fork-util
0.1.0-alpha
jvm
fork-util
/
net.peanuuutz.fork.util.common
/
fastMapIndexed
fast
Map
Indexed
inline
fun
<
R
>
ByteArray
.
fastMapIndexed
(
transform
:
(
index
:
Int
,
Byte
)
->
R
)
:
List
<
R
>
inline
fun
<
R
>
IntArray
.
fastMapIndexed
(
transform
:
(
index
:
Int
,
Int
)
->
R
)
:
List
<
R
>
inline
fun
<
R
>
FloatArray
.
fastMapIndexed
(
transform
:
(
index
:
Int
,
Float
)
->
R
)
:
List
<
R
>
inline
fun
<
R
>
DoubleArray
.
fastMapIndexed
(
transform
:
(
index
:
Int
,
Double
)
->
R
)
:
List
<
R
>
inline
fun
<
R
>
CharArray
.
fastMapIndexed
(
transform
:
(
index
:
Int
,
Char
)
->
R
)
:
List
<
R
>
inline
fun
<
T
,
R
>
Array
<
T
>
.
fastMapIndexed
(
transform
:
(
index
:
Int
,
T
)
->
R
)
:
List
<
R
>
inline
fun
<
T
,
R
>
List
<
T
>
.
fastMapIndexed
(
transform
:
(
index
:
Int
,
T
)
->
R
)
:
List
<
R
>