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