equals

Undocumented in source. Be warned that the author may not have intended to support it.
bool
equals
(
alias Comparator
Range1
Range2
)
(
Range1 r1
,
Range2 r2
)

Examples

int[3] array = [1, 2, 3];
assert(array[0..$].equals!((a,b) => a==b)(array[0..$]));

Meta