dsl-utilities
Toggle table of contents
1.0.1
common
Platform filter
common
Switch theme
Search in API
dsl-utilities
dsl-utilities
/
top.ltfan.dslutilities
/
DslMutableList
Dsl
Mutable
List
interface
DslMutableList
<
T
>
:
MutableList
<
T
>
(
source
)
Inheritors
DslReadOnlyListProperty
Members
Types
Bypassed
Hooks
Link copied to clipboard
interface
BypassedHooks
<
T
>
:
MutableList
<
T
>
Dsl
Link copied to clipboard
@
DslMarker
annotation class
Dsl
Properties
size
Link copied to clipboard
abstract
override
val
size
:
Int
Functions
add
Link copied to clipboard
abstract
override
fun
add
(
element
:
T
)
:
Boolean
abstract
fun
add
(
index
:
Int
,
element
:
T
)
add
All
Link copied to clipboard
abstract
override
fun
addAll
(
elements
:
Collection
<
T
>
)
:
Boolean
abstract
fun
addAll
(
index
:
Int
,
elements
:
Collection
<
T
>
)
:
Boolean
bypass
Hooks
Link copied to clipboard
abstract
fun
<
R
>
bypassHooks
(
block
:
DslMutableList.BypassedHooks
<
T
>
.
(
)
->
R
)
:
R
clear
Link copied to clipboard
abstract
override
fun
clear
(
)
contains
Link copied to clipboard
abstract
operator override
fun
contains
(
element
:
T
)
:
Boolean
contains
All
Link copied to clipboard
abstract
override
fun
containsAll
(
elements
:
Collection
<
T
>
)
:
Boolean
get
Link copied to clipboard
abstract
operator
fun
get
(
index
:
Int
)
:
T
index
Of
Link copied to clipboard
abstract
fun
indexOf
(
element
:
T
)
:
Int
is
Empty
Link copied to clipboard
abstract
override
fun
isEmpty
(
)
:
Boolean
iterator
Link copied to clipboard
abstract
operator override
fun
iterator
(
)
:
Iterator
<
T
>
last
Index
Of
Link copied to clipboard
abstract
fun
lastIndexOf
(
element
:
T
)
:
Int
list
Iterator
Link copied to clipboard
abstract
override
fun
listIterator
(
)
:
MutableListIterator
<
T
>
abstract
override
fun
listIterator
(
index
:
Int
)
:
MutableListIterator
<
T
>
remove
Link copied to clipboard
abstract
override
fun
remove
(
element
:
T
)
:
Boolean
remove
All
Link copied to clipboard
abstract
override
fun
removeAll
(
elements
:
Collection
<
T
>
)
:
Boolean
remove
At
Link copied to clipboard
abstract
fun
removeAt
(
index
:
Int
)
:
T
retain
All
Link copied to clipboard
abstract
override
fun
retainAll
(
elements
:
Collection
<
T
>
)
:
Boolean
set
Link copied to clipboard
abstract
operator
fun
set
(
index
:
Int
,
element
:
T
)
:
T
sub
List
Link copied to clipboard
abstract
override
fun
subList
(
fromIndex
:
Int
,
toIndex
:
Int
)
:
MutableList
<
T
>