Checks if the type is Slice instance.
alias A = uint[]; alias S = Slice!(int*); static assert(isSlice!S); static assert(!isSlice!A);
See Implementation
Checks if the type is Slice instance.