stream-webrtc-android
Toggle table of contents
1.3.6
androidJvm
Platform filter
androidJvm
Switch theme
Search in API
stream-webrtc-android
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.