ArrayDrop<T> extension
- on
-
- List<
T>
- List<
Methods
-
drop(
int count) → List -
Available on List<
drop Creates a slice of array with n elements dropped from the beginning. @param array the list to compare against @paramT> , provided by the ArrayDrop extensionn
the number of elements to drop @returns the values in the list that are not in the other -
dropRight(
[int n = 1]) → List -
Available on List<
dropRight Creates a slice of array with n elements dropped from the end. @param array the list to compare against @paramT> , provided by the ArrayDrop extensionn
the number of elements to drop -
dropWhile(
Function predicate) → List -
Available on List<
T> , provided by the ArrayDrop extensiondropRightWhile
Creates a slice of array excluding elements dropped from the beginning. @param array the list to compare against @parampredicate
the function to determine equality