true if both arrays are the same length and lhs.ptr == rhs.ptr,
false otherwise.
bool sameTail(T)(in T[] lhs, in T[] rhs) @trusted pure nothrow @nogcReturns whether the backs of lhs and rhs both refer to the same place in memory, making one of the arrays a slice of the other which end at index `$`.
lhs | the first array to compare |
rhs | the second array to compare |
true if both arrays are the same length and lhs.ptr == rhs.ptr,
false otherwise.