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