kool
/
kool.lib
/
find
find
inline fun
ByteBuffer
.
find
(predicate: (
Byte
) ->
Boolean
):
Byte
?
Content copied to clipboard
inline fun
ShortBuffer
.
find
(predicate: (
Short
) ->
Boolean
):
Short
?
Content copied to clipboard
inline fun
IntBuffer
.
find
(predicate: (
Int
) ->
Boolean
):
Int
?
Content copied to clipboard
inline fun
LongBuffer
.
find
(predicate: (
Long
) ->
Boolean
):
Long
?
Content copied to clipboard
inline fun
FloatBuffer
.
find
(predicate: (
Float
) ->
Boolean
):
Float
?
Content copied to clipboard
inline fun
DoubleBuffer
.
find
(predicate: (
Double
) ->
Boolean
):
Double
?
Content copied to clipboard
inline fun
CharBuffer
.
find
(predicate: (
Char
) ->
Boolean
):
Char
?
Content copied to clipboard
Returns the first element matching the given
predicate
, or
null
if no such element was found.