Single
Attributes
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait NonEmptyList[A]class Objecttrait Matchableclass AnyShow all
Members list
Value members
Inherited methods
Concatenates this NonEmptyList with the specified Iterable.
Concatenates this NonEmptyList with the specified NonEmptyList.
Concatenates this NonEmptyList with the specified NonEmptyList.
Attributes
- Inherited from:
- NonEmptyList
Prepends the specified value to this NonEmptyList.
Returns whether this NonEmptyList contains the specified element.
Returns whether this NonEmptyList contains the specified element.
Attributes
- Inherited from:
- NonEmptyList
Determines whether this NonEmptyList and the specified NonEmptyList have the same length and every pair of corresponding elements of this NonEmptyList and the specified NonEmptyList satisfy the specified predicate.
Determines whether this NonEmptyList and the specified NonEmptyList have the same length and every pair of corresponding elements of this NonEmptyList and the specified NonEmptyList satisfy the specified predicate.
Attributes
- Inherited from:
- NonEmptyList
Returns the number of elements in this NonEmptyList that satisfy the specified predicate.
Returns the number of elements in this NonEmptyList that satisfy the specified predicate.
Attributes
- Inherited from:
- NonEmptyList
Removes duplicate elements from this NonEmptyList.
Drops the first n elements from this NonEmptyList returning a List.
Drops the first n elements from this NonEmptyList returning a List.
Attributes
- Inherited from:
- NonEmptyList
Drops the last n elements from this NonEmptyList returning a List.
Drops the last n elements from this NonEmptyList returning a List.
Attributes
- Inherited from:
- NonEmptyList
Drops elements from the start of this NonEmptyList that satisfy the specified predicate returning a List.
Drops elements from the start of this NonEmptyList that satisfy the specified predicate returning a List.
Attributes
- Inherited from:
- NonEmptyList
Returns whether this NonEmptyList and the specified NonEmptyList are equal to each other.
Returns whether this NonEmptyList and the specified NonEmptyList are equal to each other.
Attributes
- Definition Classes
-
NonEmptyList -> Any
- Inherited from:
- NonEmptyList
Returns whether an element exists in this NonEmptyList satisfying the specified predicate.
Returns whether an element exists in this NonEmptyList satisfying the specified predicate.
Attributes
- Inherited from:
- NonEmptyList
Returns the first element in this NonEmptyList satisfying the specified predicate or None otherwise.
Returns the first element in this NonEmptyList satisfying the specified predicate or None otherwise.
Attributes
- Inherited from:
- NonEmptyList
Transforms each element of this NonEmptyList to a NonEmptyList and combines them into a single NonEmptyList.
Transforms each element of this NonEmptyList to a NonEmptyList and combines them into a single NonEmptyList.
Attributes
- Inherited from:
- NonEmptyList
Flattens a NonEmptyList of NonEmptyList values into a single NonEmptyList.
Flattens a NonEmptyList of NonEmptyList values into a single NonEmptyList.
Attributes
- Inherited from:
- NonEmptyList
Folds over the elements of this NonEmptyList from left to right using the specified initial value and combining function
Folds over the elements of this NonEmptyList from left to right using the specified initial value and combining function
Attributes
- Inherited from:
- NonEmptyList
Folds over the elements of this NonEmptyList from right to left using the specified initial value and combining function.
Folds over the elements of this NonEmptyList from right to left using the specified initial value and combining function.
Attributes
- Inherited from:
- NonEmptyList
Transforms each element of this NonEmptyList with the specified effectual function.
Transforms each element of this NonEmptyList with the specified effectual function.
Attributes
- Inherited from:
- NonEmptyList
Returns whether all elements of this NonEmptyList satisfy the specified predicate.
Returns whether all elements of this NonEmptyList satisfy the specified predicate.
Attributes
- Inherited from:
- NonEmptyList
Returns the hashCode of this NonEmptyList.
Returns the hashCode of this NonEmptyList.
Attributes
- Definition Classes
-
NonEmptyList -> Any
- Inherited from:
- NonEmptyList
Returns the length of this NonEmptyList.
Transforms the elements of this NonEmptyList with the specified function.
Transforms the elements of this NonEmptyList with the specified function.
Attributes
- Inherited from:
- NonEmptyList
Effectfully maps the elements of this NonEmptyList.
Effectfully maps the elements of this NonEmptyList in parallel.
Effectfully maps the elements of this NonEmptyList in parallel.
Attributes
- Inherited from:
- NonEmptyList
Returns the maximum element in this NonEmptyList.
Returns the maximum element in this NonEmptyList using the specified function to map values of type A to values of type B that an ordering is defined on.
Returns the maximum element in this NonEmptyList using the specified function to map values of type A to values of type B that an ordering is defined on.
Attributes
- Inherited from:
- NonEmptyList
Returns the minimum element in this NonEmptyList.
Returns the minimum element in this NonEmptyList using the specified function to map values of type A to values of type B that an ordering is defined on.
Returns the minimum element in this NonEmptyList using the specified function to map values of type A to values of type B that an ordering is defined on.
Attributes
- Inherited from:
- NonEmptyList
Renders the elements of this NonEmptyList as a String using the specified separator and start and end values.
Renders the elements of this NonEmptyList as a String using the specified separator and start and end values.
Attributes
- Inherited from:
- NonEmptyList
Renders the elements of this NonEmptyList as a String using the specified separator.
Renders the elements of this NonEmptyList as a String using the specified separator.
Attributes
- Inherited from:
- NonEmptyList
Renders the elements of this NonEmptyList as a String.
Decomposes the NonEmptyList into an element and a (possibly empty) List
Decomposes the NonEmptyList into an element and a (possibly empty) List
Attributes
- Inherited from:
- NonEmptyList
Returns an element of this NonEmptyList and the remainder or None, if the remainder is empty.
Returns an element of this NonEmptyList and the remainder or None, if the remainder is empty.
Attributes
- Inherited from:
- NonEmptyList
Returns the product of the elements of this NonEmptyList.
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- Product
Reduces the elements of this NonEmptyList using the specified associative operator.
Reduces the elements of this NonEmptyList using the specified associative operator.
Attributes
- Inherited from:
- NonEmptyList
Reduces the elements of this NonEmptyList from left to right using the specified function.
Reduces the elements of this NonEmptyList from left to right using the specified function.
Attributes
- Inherited from:
- NonEmptyList
Maps each element of this NonEmptyList to a type B that has an associative operation then combines them all with the associative operation.
Maps each element of this NonEmptyList to a type B that has an associative operation then combines them all with the associative operation.
Attributes
- Inherited from:
- NonEmptyList
Reduces the elements of this NonEmptyList from left to right using the function map to transform the first value to the type B and then the function reduceAll to combine the B value with each other A value.
Reduces the elements of this NonEmptyList from left to right using the function map to transform the first value to the type B and then the function reduceAll to combine the B value with each other A value.
Attributes
- Inherited from:
- NonEmptyList
Reduces the elements of this NonEmptyList from right to left using the function map to transform the first value to the type B and then the function reduceAll to combine the B value with each other A value.
Reduces the elements of this NonEmptyList from right to left using the function map to transform the first value to the type B and then the function reduceAll to combine the B value with each other A value.
Attributes
- Inherited from:
- NonEmptyList
Reduces the elements of this NonEmptyList from right to left using the specified function.
Reduces the elements of this NonEmptyList from right to left using the specified function.
Attributes
- Inherited from:
- NonEmptyList
Reverses the order of elements in this NonEmptyList.
Returns the sum of the elements of this NonEmptyList.
Returns the tail of this NonEmptyList if it exists or None otherwise.
Returns the tail of this NonEmptyList if it exists or None otherwise.
Attributes
- Inherited from:
- NonEmptyList
Returns a new NonEmptyList composed of this NonEmptyList followed by each of its tails, ending with a singleton NonEmptyList.
Returns a new NonEmptyList composed of this NonEmptyList followed by each of its tails, ending with a singleton NonEmptyList.
Attributes
- Inherited from:
- NonEmptyList
Takes the first n elements from this NonEmptyList returning a List.
Takes the first n elements from this NonEmptyList returning a List.
Attributes
- Inherited from:
- NonEmptyList
Takes the last n elements from this NonEmptyList returning a List.
Takes the last n elements from this NonEmptyList returning a List.
Attributes
- Inherited from:
- NonEmptyList
Takes elements from the start of this NonEmptyList that satisfy the specified predicate returning a List.
Takes elements from the start of this NonEmptyList that satisfy the specified predicate returning a List.
Attributes
- Inherited from:
- NonEmptyList
Converts this NonEmptyList to the :: case of a List.
Converts this NonEmptyList to a NonEmptyChunk.
Renders this NonEmptyList as a String.
Renders this NonEmptyList as a String.
Attributes
- Definition Classes
-
NonEmptyList -> Any
- Inherited from:
- NonEmptyList
Zips this NonEmptyList together with the specified NonEmptyList, returning a new NonEmptyList with a length equal to the minimum of the two and elements combined pairwise.
Zips this NonEmptyList together with the specified NonEmptyList, returning a new NonEmptyList with a length equal to the minimum of the two and elements combined pairwise.
Attributes
- Inherited from:
- NonEmptyList
Zips this NonEmptyList together with the specified NonEmptyList, returning a new NonEmptyList with a length equal to the minimum of the two and elements combined pairwise using the specified function.
Zips this NonEmptyList together with the specified NonEmptyList, returning a new NonEmptyList with a length equal to the minimum of the two and elements combined pairwise using the specified function.
Attributes
- Inherited from:
- NonEmptyList
Annotates each element of this NonEmptyList with its index.