slice overloads
Synopses
Declared in <llvm/ADT/ArrayRef.h>
Chop off the first N elements of the array.
MutableArrayRef<T>
slice(size_t N) const;
Chop off the first N elements of the array, and keep M elements in the array.
MutableArrayRef<T>
slice(
size_t N,
size_t M) const;
Created with MrDocs