Uses of Class
io.vavr.API.Match.Pattern0
Packages that use API.Match.Pattern0
Package
Description
Beside
API
the io.vavr package contains core types like (Checked)Functions and Tuples.-
Uses of API.Match.Pattern0 in io.vavr
Fields in io.vavr declared as API.Match.Pattern0Modifier and TypeFieldDescriptionstatic final API.Match.Pattern0
<Tuple0> Patterns.$Tuple0
private static final API.Match.Pattern0
<Object> API.Match.Pattern0.ANY
private final API.Match.Pattern0
<T> API.Match.Case0.pattern
Methods in io.vavr that return API.Match.Pattern0Modifier and TypeMethodDescriptionstatic <T> API.Match.Pattern0
<T> API.$()
Wildcard pattern, matches any value.static <T> API.Match.Pattern0
<T> Guard pattern, checks if a predicate is satisfied.static <T> API.Match.Pattern0
<T> API.$
(T prototype) Value pattern, checks for equality.static <T> API.Match.Pattern0
<List.Nil<T>> Patterns.$Nil()
static <T> API.Match.Pattern0
<Option.None<T>> Patterns.$None()
static <T> API.Match.Pattern0
<T> API.Match.Pattern0.any()
static <T> API.Match.Pattern0
<T> Methods in io.vavr with parameters of type API.Match.Pattern0Modifier and TypeMethodDescriptionstatic <T,
R> API.Match.Case <T, R> API.Case
(API.Match.Pattern0<T> pattern, Function<? super T, ? extends R> f) static <T,
R> API.Match.Case <T, R> API.Case
(API.Match.Pattern0<T> pattern, Supplier<? extends R> supplier) static <T,
R> API.Match.Case <T, R> API.Case
(API.Match.Pattern0<T> pattern, R retVal) Constructors in io.vavr with parameters of type API.Match.Pattern0