toggle menu
stream-webrtc-android
1.2.2
androidJvm
switch theme
search in API
stream-webrtc-android
/
org.webrtc
/
Predicate
Predicate
interface
Predicate
<
T
>
Represents a predicate (boolean-valued function) of one argument.
Members
Functions
and
Link copied to clipboard
open
fun
and
(
other
:
Predicate
<
in
T
>
)
:
Predicate
<
T
>
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
negate
Link copied to clipboard
open
fun
negate
(
)
:
Predicate
<
T
>
Returns a predicate that represents the logical negation of this predicate.
or
Link copied to clipboard
open
fun
or
(
other
:
Predicate
<
in
T
>
)
:
Predicate
<
T
>
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
test
Link copied to clipboard
abstract
fun
test
(
arg
:
T
)
:
Boolean
Evaluates this predicate on the given argument.