Kone
Toggle table of contents
0.0.0-experiment-2025.3.27
common
Platform filter
common
Switch theme
Search in API
Kone
kone.multidimensionalCollections
/
dev.lounres.kone.multidimensionalCollections.utils
Package-level
declarations
Functions
Functions
all
Link copied to clipboard
inline
fun
<
E
>
MDList
<
E
>
.
all
(
block
:
(
value
:
E
)
->
Boolean
)
:
Boolean
all
Indexed
Link copied to clipboard
inline
fun
<
E
>
MDList1
<
E
>
.
allIndexed
(
block
:
(
index
:
UInt
,
value
:
E
)
->
Boolean
)
:
Boolean
inline
fun
<
E
>
MDList2
<
E
>
.
allIndexed
(
block
:
(
rowIndex
:
UInt
,
columnIndex
:
UInt
,
value
:
E
)
->
Boolean
)
:
Boolean
inline
fun
<
E
>
MDList
<
E
>
.
allIndexed
(
block
:
(
index
:
KoneUIntArray
,
value
:
E
)
->
Boolean
)
:
Boolean
any
Link copied to clipboard
inline
fun
<
E
>
MDList
<
E
>
.
any
(
block
:
(
value
:
E
)
->
Boolean
)
:
Boolean
any
Indexed
Link copied to clipboard
inline
fun
<
E
>
MDList1
<
E
>
.
anyIndexed
(
block
:
(
index
:
UInt
,
value
:
E
)
->
Boolean
)
:
Boolean
inline
fun
<
E
>
MDList2
<
E
>
.
anyIndexed
(
block
:
(
rowIndex
:
UInt
,
columnIndex
:
UInt
,
value
:
E
)
->
Boolean
)
:
Boolean
inline
fun
<
E
>
MDList
<
E
>
.
anyIndexed
(
block
:
(
index
:
KoneUIntArray
,
value
:
E
)
->
Boolean
)
:
Boolean
fold
Link copied to clipboard
inline
fun
<
E
,
R
>
MDList
<
E
>
.
fold
(
initial
:
R
,
operation
:
(
acc
:
R
,
E
)
->
R
)
:
R
fold
Indexed
Link copied to clipboard
inline
fun
<
E
,
R
>
MDList1
<
E
>
.
foldIndexed
(
initial
:
R
,
operation
:
(
index
:
UInt
,
acc
:
R
,
E
)
->
R
)
:
R
inline
fun
<
E
,
R
>
MDList2
<
E
>
.
foldIndexed
(
initial
:
R
,
operation
:
(
rowIndex
:
UInt
,
columnIndex
:
UInt
,
acc
:
R
,
E
)
->
R
)
:
R
inline
fun
<
E
,
R
>
MDList
<
E
>
.
foldIndexed
(
initial
:
R
,
operation
:
(
index
:
KoneUIntArray
,
acc
:
R
,
E
)
->
R
)
:
R
for
Each
Link copied to clipboard
inline
fun
<
E
>
MDList
<
E
>
.
forEach
(
block
:
(
value
:
E
)
->
Unit
)
for
Each
Indexed
Link copied to clipboard
inline
fun
<
E
>
MDList1
<
E
>
.
forEachIndexed
(
block
:
(
index
:
UInt
,
value
:
E
)
->
Unit
)
inline
fun
<
E
>
MDList2
<
E
>
.
forEachIndexed
(
block
:
(
rowIndex
:
UInt
,
columnIndex
:
UInt
,
value
:
E
)
->
Unit
)
inline
fun
<
E
>
MDList
<
E
>
.
forEachIndexed
(
block
:
(
index
:
KoneUIntArray
,
value
:
E
)
->
Unit
)
map
Link copied to clipboard
inline
fun
<
E
,
R
>
MDList1
<
E
>
.
map
(
transform
:
(
E
)
->
R
)
:
MDList1
<
R
>
inline
fun
<
E
,
R
>
MDList2
<
E
>
.
map
(
transform
:
(
E
)
->
R
)
:
MDList2
<
R
>
inline
fun
<
E
,
R
>
MDList
<
E
>
.
map
(
transform
:
(
E
)
->
R
)
:
MDList
<
R
>
map
Indexed
Link copied to clipboard
inline
fun
<
E
,
R
>
MDList1
<
E
>
.
mapIndexed
(
transform
:
(
index
:
UInt
,
E
)
->
R
)
:
MDList1
<
R
>
inline
fun
<
E
,
R
>
MDList2
<
E
>
.
mapIndexed
(
transform
:
(
rowIndex
:
UInt
,
columnIndex
:
UInt
,
E
)
->
R
)
:
MDList2
<
R
>
inline
fun
<
E
,
R
>
MDList
<
E
>
.
mapIndexed
(
transform
:
(
index
:
KoneUIntArray
,
E
)
->
R
)
:
MDList
<
R
>
none
Link copied to clipboard
inline
fun
<
E
>
MDList
<
E
>
.
none
(
block
:
(
value
:
E
)
->
Boolean
)
:
Boolean
none
Indexed
Link copied to clipboard
inline
fun
<
E
>
MDList1
<
E
>
.
noneIndexed
(
block
:
(
index
:
UInt
,
value
:
E
)
->
Boolean
)
:
Boolean
inline
fun
<
E
>
MDList2
<
E
>
.
noneIndexed
(
block
:
(
rowIndex
:
UInt
,
columnIndex
:
UInt
,
value
:
E
)
->
Boolean
)
:
Boolean
inline
fun
<
E
>
MDList
<
E
>
.
noneIndexed
(
block
:
(
index
:
KoneUIntArray
,
value
:
E
)
->
Boolean
)
:
Boolean
sum
Link copied to clipboard
fun
<
E
>
MDList
<
E
>
.
sum
(
)
:
E
sum
Of
Link copied to clipboard
inline
fun
<
E
,
A
>
MDList
<
E
>
.
sumOf
(
selector
:
(
E
)
->
A
)
:
A
sum
Of
Indexed
Link copied to clipboard
inline
fun
<
E
,
A
>
MDList1
<
E
>
.
sumOfIndexed
(
selector
:
(
index
:
UInt
,
E
)
->
A
)
:
A
inline
fun
<
E
,
A
>
MDList2
<
E
>
.
sumOfIndexed
(
selector
:
(
rowIndex
:
UInt
,
columnIndex
:
UInt
,
E
)
->
A
)
:
A
inline
fun
<
E
,
A
>
MDList
<
E
>
.
sumOfIndexed
(
selector
:
(
index
:
KoneUIntArray
,
E
)
->
A
)
:
A
with
Each
Link copied to clipboard
inline
fun
<
E
>
MDList
<
E
>
.
withEach
(
block
:
E
.
(
)
->
Unit
)
with
Each
Indexed
Link copied to clipboard
inline
fun
<
E
>
MDList1
<
E
>
.
withEachIndexed
(
block
:
E
.
(
index
:
UInt
)
->
Unit
)
inline
fun
<
E
>
MDList2
<
E
>
.
withEachIndexed
(
block
:
E
.
(
rowIndex
:
UInt
,
columnIndex
:
UInt
)
->
Unit
)
inline
fun
<
E
>
MDList
<
E
>
.
withEachIndexed
(
block
:
E
.
(
index
:
KoneUIntArray
)
->
Unit
)