package functional
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
trait
Consumer[T] extends AnyRef
Represents an operation that takes an input and returns no result.
Represents an operation that takes an input and returns no result.
- T
the input type
-
abstract
class
Either[+L, +R] extends AnyRef
Represents a value that can be one of two types.
Represents a value that can be one of two types. Inspired by Either, it is right biased, but does not define all of the combinators that the scala version does.
- L
The left value
- R
The right value
-
trait
Filter[T] extends AnyRef
Generic Filter functional interface.
Generic Filter functional interface.
- T
The type of object to filter