Kone
Toggle table of contents
0.0.0-experiment
common
Platform filter
common
Switch theme
Search in API
Kone
kone.multidimensionalCollections
/
dev.lounres.kone.multidimensionalCollections
/
SettableMDList
Settable
MDList
@
Serializable
(
with
=
SettableMDListSerializer::class
)
interface
SettableMDList
<
E
>
:
MDList
<
E
>
(
source
)
Inheritors
SettableMDList1
SettableMDList2
ArrayMDList
LazyArrayMDList
Members
Members & Extensions
Properties
dimension
Link copied to clipboard
val
MDList
<
*
>
.
dimension
:
UInt
shape
Link copied to clipboard
abstract
val
shape
:
MDShape
size
Link copied to clipboard
open
val
size
:
UInt
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
>
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
>
MDList
<
E
>
.
anyIndexed
(
block
:
(
index
:
KoneUIntArray
,
value
:
E
)
->
Boolean
)
:
Boolean
as1D
Link copied to clipboard
fun
<
E
>
MDList
<
E
>
.
as1D
(
)
:
MDList1
<
E
>
fun
<
E
>
SettableMDList
<
E
>
.
as1D
(
)
:
SettableMDList1
<
E
>
as2D
Link copied to clipboard
fun
<
E
>
MDList
<
E
>
.
as2D
(
)
:
MDList2
<
E
>
fun
<
E
>
SettableMDList
<
E
>
.
as2D
(
)
:
SettableMDList2
<
E
>
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
>
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
>
MDList
<
E
>
.
forEachIndexed
(
block
:
(
index
:
KoneUIntArray
,
value
:
E
)
->
Unit
)
get
Link copied to clipboard
abstract
operator
fun
get
(
index
:
KoneUIntArray
)
:
E
get
Link copied to clipboard
operator
fun
<
E
>
MDList
<
E
>
.
get
(
vararg
index
:
UInt
)
:
E
map
Link copied to clipboard
inline
fun
<
E
,
R
>
MDList
<
E
>
.
map
(
transform
:
(
E
)
->
R
)
:
MDList
<
R
>
map
Indexed
Link copied to clipboard
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
>
MDList
<
E
>
.
noneIndexed
(
block
:
(
index
:
KoneUIntArray
,
value
:
E
)
->
Boolean
)
:
Boolean
set
Link copied to clipboard
abstract
operator
fun
set
(
index
:
KoneUIntArray
,
element
:
E
)
set
Link copied to clipboard
operator
fun
<
E
>
SettableMDList
<
E
>
.
set
(
vararg
index
:
UInt
,
element
:
E
)
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
>
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
>
MDList
<
E
>
.
withEachIndexed
(
block
:
E
.
(
index
:
KoneUIntArray
)
->
Unit
)