对于 N=1,我会使用 std.array : empty
来检查长度是否至少为 N,并避免必须遍历整个输入。
对于 N>1(或全部 N(,D 语言中的惯用方式是什么?
我尝试使用"懒惰地只接受一个范围的最多 n 个元素"std.range : take
。它适用于数组,但不适用于范围(当然,除非我将子范围变成数组(:
#!/usr/bin/env rdmd
module test_ranges;
void main()
{
import std.container.dlist : DList;
assert(lengthAtLeast([1, 2, 3], 2) == true);
// assert(lengthAtLeast(DList!int(1, 2, 3)[], 2) == true);
/*
test_ranges.d(64): Error: no property length for type Take!(Range)
test_ranges.d(10): Error: template instance `test_ranges.lengthAtLeast!(Range)` error instantiating
Failed: ["/usr/bin/dmd", "-v", "-o-", "test_ranges.d", "-I."]
*/
}
bool lengthAtLeast(R)(R input, size_t n)
{
import std.range : take;
return input.take(n).length == n;
// this makes it work for arrays and ranges alike, but is not nice, is it?
// import std.array : array;
// return input.take(n).array.length == n;
}
walkLength
做你想做的事:
bool lengthAtLeast(R)(R input, size_t n)
{
import std.range.primitives : walkLength;
return input.walkLength(n) >= n; // walks upTo n or returns the length if known
}