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