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
/
DslReplaceableList
Dsl
Replaceable
List
interface
DslReplaceableList
<
T
>
:
MutableList
<
T
>
(
source
)
Inheritors
AbstractDslMutableList
Members
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
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
replace
Link copied to clipboard
abstract
fun
replace
(
list
:
MutableList
<
T
>
)
Replaces the current list with a new one.
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
>