public static interface Combinators.Combinator3<T1,T2,T3>
| Modifier and Type | Method and Description |
|---|---|
<R> Arbitrary<R> |
as(Combinators.F3<T1,T2,T3,R> combinator)
Combine three values.
|
Combinators.Combinator3<T1,T2,T3> |
filter(Combinators.F3<T1,T2,T3,java.lang.Boolean> filter)
Filter three values to only let them pass if the predicate is true.
|
default <R> Arbitrary<R> |
flatAs(Combinators.F3<T1,T2,T3,Arbitrary<R>> flatCombinator)
Combine three values to create a new arbitrary.
|
<R> Arbitrary<R> as(Combinators.F3<T1,T2,T3,R> combinator)
R - return typecombinator - function@API(status=MAINTAINED,
since="1.8.0")
Combinators.Combinator3<T1,T2,T3> filter(Combinators.F3<T1,T2,T3,java.lang.Boolean> filter)
filter - function