Package net.jqwik.api
Schnittstelle Combinators.Combinator6<T1 extends @Nullable Object,T2 extends @Nullable Object,T3 extends @Nullable Object,T4 extends @Nullable Object,T5 extends @Nullable Object,T6 extends @Nullable Object>
- Umschließende Klasse:
Combinators
public static interface Combinators.Combinator6<T1 extends @Nullable Object,T2 extends @Nullable Object,T3 extends @Nullable Object,T4 extends @Nullable Object,T5 extends @Nullable Object,T6 extends @Nullable Object>
Combinator for six values.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungas
(Combinators.F6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R> combinator) Combine six values.filter
(Combinators.F6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, Boolean> filter) Filter six values to only let them pass if the predicate is true.flatAs
(Combinators.F6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends Arbitrary<R>> flatCombinator) Combine six values to create a new arbitrary.
-
Methodendetails
-
as
<R extends @Nullable Object> Arbitrary<R> as(Combinators.F6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R> combinator) Combine six values.- Typparameter:
R
- return type- Parameter:
combinator
- function- Gibt zurück:
- arbitrary instance
-
filter
@API(status=MAINTAINED, since="1.8.0") Combinators.Combinator6<T1,T2, filterT3, T4, T5, T6> (Combinators.F6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, Boolean> filter) Filter six values to only let them pass if the predicate is true.- Parameter:
filter
- function- Gibt zurück:
- combinator instance
-
flatAs
default <R extends @Nullable Object> Arbitrary<R> flatAs(Combinators.F6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends Arbitrary<R>> flatCombinator) Combine six values to create a new arbitrary.- Typparameter:
R
- return type of arbitrary- Parameter:
flatCombinator
- function- Gibt zurück:
- arbitrary instance
-