- last() - Method in interface com.github.javactic.Every
-
Selects the last element of this Every.
- lastIndexOf(T) - Method in interface com.github.javactic.Every
-
Finds the index of the last occurrence of some value in this Every.
- lastIndexOf(T, int) - Method in interface com.github.javactic.Every
-
Finds the index of the last occurrence of some value in this Every before
or at a given end index.
- lastIndexOfSlice(Iterable<? extends T>) - Method in interface com.github.javactic.Every
-
Finds the last index where this Every contains a given Iterable as a
slice.
- lastIndexOfSlice(Iterable<? extends T>, int) - Method in interface com.github.javactic.Every
-
Finds the last index before or at a given end index where this Every
contains a given Iterable as a slice.
- lastIndexWhere(Predicate<? super T>) - Method in interface com.github.javactic.Every
-
Finds index of last element satisfying some predicate.
- lastIndexWhere(Predicate<? super T>, int) - Method in interface com.github.javactic.Every
-
Finds index of last element satisfying some predicate before or at given
end index.
- lastOption() - Method in interface com.github.javactic.Every
-
Returns the last element of this Every, wrapped in a Some.
- length() - Method in interface com.github.javactic.Every
-
The length of this Every.
- lengthCompare(int) - Method in interface com.github.javactic.Every
-
Compares the length of this Every to a test value.
- lift() - Method in interface com.github.javactic.Every
-
Turns this partial function into a plain function returning an Option
result.