Uses of Class
io.vavr.API.Match.Pattern3
-
Packages that use API.Match.Pattern3 Package Description io.vavr BesideAPI
the io.vavr package contains core types like (Checked)Functions and Tuples. -
-
Uses of API.Match.Pattern3 in io.vavr
Fields in io.vavr declared as API.Match.Pattern3 Modifier and Type Field Description private API.Match.Pattern3<T,T1,T2,T3>
API.Match.Case3. pattern
Methods in io.vavr that return API.Match.Pattern3 Modifier and Type Method Description static <T1,T2,T3,_1 extends T1,_2 extends T2,_3 extends T3>
API.Match.Pattern3<Tuple3<T1,T2,T3>,_1,_2,_3>Patterns. $Tuple3(API.Match.Pattern<_1,?> p1, API.Match.Pattern<_2,?> p2, API.Match.Pattern<_3,?> p3)
static <T,T1 extends U1,U1,T2 extends U2,U2,T3 extends U3,U3>
API.Match.Pattern3<T,T1,T2,T3>API.Match.Pattern3. of(java.lang.Class<? super T> type, API.Match.Pattern<T1,?> p1, API.Match.Pattern<T2,?> p2, API.Match.Pattern<T3,?> p3, java.util.function.Function<T,Tuple3<U1,U2,U3>> unapply)
Methods in io.vavr with parameters of type API.Match.Pattern3 Modifier and Type Method Description static <T,T1,T2,T3,R>
API.Match.Case<T,R>API. Case(API.Match.Pattern3<T,T1,T2,T3> pattern, Function3<? super T1,? super T2,? super T3,? extends R> f)
static <T,T1,T2,T3,R>
API.Match.Case<T,R>API. Case(API.Match.Pattern3<T,T1,T2,T3> pattern, java.util.function.Supplier<? extends R> supplier)
static <T,T1,T2,T3,R>
API.Match.Case<T,R>API. Case(API.Match.Pattern3<T,T1,T2,T3> pattern, R retVal)
Constructors in io.vavr with parameters of type API.Match.Pattern3 Constructor Description Case3(API.Match.Pattern3<T,T1,T2,T3> pattern, Function3<? super T1,? super T2,? super T3,? extends R> f)
-