core
0.1.7
core
/
de.peekandpoke.kraft.streams.addons
/
filterIsInstance
filter
Is
Instance
inline
fun
<
T
,
I
:
T
>
Stream
<
T
?
>
.
filterIsInstance
(
)
:
Stream
<
I
?
>
Content copied to clipboard
inline
fun
<
T
,
I
:
T
>
Stream
<
T
?
>
.
filterIsInstance
(
initial
:
I
)
:
Stream
<
I
>
Content copied to clipboard
Filters the incoming values and publish only the ones that are an instance of
I
.