rd-core
2023.2.3
rd-core
/
com.jetbrains.rd.util.reactive
/
map
map
fun
<
T
,
R
>
IPropertyView
<
T
>
.
map
(
f
:
(
T
)
->
R
)
:
IPropertyView
<
R
>
Content copied to clipboard
fun
<
T
:
Any
,
R
:
Any
>
IOptPropertyView
<
T
>
.
map
(
f
:
(
T
)
->
R
)
:
IOptPropertyView
<
R
>
Content copied to clipboard
fun
<
T
,
R
>
ISource
<
T
>
.
map
(
f
:
(
T
)
->
R
)
:
ISource
<
R
>
Content copied to clipboard
Returns a new source which remaps events happening in this source using the given function
f
.