Elide API
Toggle table of contents
1.0.0-beta1
common
Platform filter
common
Switch theme
Search in API
Elide API
base
/
elide.struct.api
/
MutableSortedList
Mutable
Sorted
List
common
interface
MutableSortedList
<
Value
:
Comparable
<
Value
>
>
:
MutableList
<
Value
>
Inheritors
MutablePresortedList
Members
Properties
size
Link copied to clipboard
common
abstract
override
val
size
:
Int
Functions
add
Link copied to clipboard
common
abstract
override
fun
add
(
element
:
Value
)
:
Boolean
abstract
fun
add
(
index
:
Int
,
element
:
Value
)
add
All
Link copied to clipboard
common
abstract
override
fun
addAll
(
elements
:
Collection
<
Value
>
)
:
Boolean
abstract
fun
addAll
(
index
:
Int
,
elements
:
Collection
<
Value
>
)
:
Boolean
clear
Link copied to clipboard
common
abstract
override
fun
clear
(
)
contains
Link copied to clipboard
common
abstract
operator override
fun
contains
(
element
:
Value
)
:
Boolean
contains
All
Link copied to clipboard
common
abstract
override
fun
containsAll
(
elements
:
Collection
<
Value
>
)
:
Boolean
get
Link copied to clipboard
common
abstract
operator
fun
get
(
index
:
Int
)
:
Value
index
Of
Link copied to clipboard
common
abstract
fun
indexOf
(
element
:
Value
)
:
Int
is
Empty
Link copied to clipboard
common
abstract
override
fun
isEmpty
(
)
:
Boolean
iterator
Link copied to clipboard
common
abstract
operator override
fun
iterator
(
)
:
Iterator
<
Value
>
last
Index
Of
Link copied to clipboard
common
abstract
fun
lastIndexOf
(
element
:
Value
)
:
Int
list
Iterator
Link copied to clipboard
common
abstract
override
fun
listIterator
(
)
:
MutableListIterator
<
Value
>
abstract
override
fun
listIterator
(
index
:
Int
)
:
MutableListIterator
<
Value
>
remove
Link copied to clipboard
common
abstract
override
fun
remove
(
element
:
Value
)
:
Boolean
remove
All
Link copied to clipboard
common
abstract
override
fun
removeAll
(
elements
:
Collection
<
Value
>
)
:
Boolean
remove
At
Link copied to clipboard
common
abstract
fun
removeAt
(
index
:
Int
)
:
Value
retain
All
Link copied to clipboard
common
abstract
override
fun
retainAll
(
elements
:
Collection
<
Value
>
)
:
Boolean
set
Link copied to clipboard
common
abstract
operator
fun
set
(
index
:
Int
,
element
:
Value
)
:
Value
sub
List
Link copied to clipboard
common
abstract
override
fun
subList
(
fromIndex
:
Int
,
toIndex
:
Int
)
:
MutableList
<
Value
>