komponent
Toggle table of contents
js
Target filter
js
Switch theme
Search in API
Skip to content
komponent
komponent
/
me.sparky983.komponent
/
ListSignal
List
Signal
abstract
class
ListSignal
<
out
E
>
:
List
<
E
>
(
source
)
A signal that contains several elements rather than a single value.
Since
0.1.0
See also
For
Mutable
Signal
list
Signal
list
Signal
Of
Inheritors
MutableListSignal
Members
Properties
size
Link copied to clipboard
abstract
override
val
size
:
Int
Functions
as
Js
Readonly
Array
View
Link copied to clipboard
@
ExperimentalJsExport
@
ExperimentalJsCollectionsApi
open
fun
asJsReadonlyArrayView
(
)
:
JsReadonlyArray
<
E
>
contains
Link copied to clipboard
abstract
operator override
fun
contains
(
element
:
E
)
:
Boolean
contains
All
Link copied to clipboard
abstract
override
fun
containsAll
(
elements
:
Collection
<
E
>
)
:
Boolean
get
Link copied to clipboard
abstract
operator
fun
get
(
index
:
Int
)
:
E
index
Of
Link copied to clipboard
abstract
fun
indexOf
(
element
:
E
)
:
Int
is
Empty
Link copied to clipboard
abstract
override
fun
isEmpty
(
)
:
Boolean
iterator
Link copied to clipboard
abstract
operator override
fun
iterator
(
)
:
Iterator
<
E
>
last
Index
Of
Link copied to clipboard
abstract
fun
lastIndexOf
(
element
:
E
)
:
Int
list
Iterator
Link copied to clipboard
abstract
fun
listIterator
(
)
:
ListIterator
<
E
>
abstract
fun
listIterator
(
index
:
Int
)
:
ListIterator
<
E
>
sub
List
Link copied to clipboard
abstract
fun
subList
(
fromIndex
:
Int
,
toIndex
:
Int
)
:
List
<
E
>