platform-collections
0.1.0-SNAPSHOT
common
darwin
js
unspecialized
platform-collections
/
com.jakewharton.platformcollections
/
PlatformList
Platform
List
common
darwin
js
unspecialized
expect
class
PlatformList
<
E
>
actual
value
class
PlatformList
<
E
>
actual
typealias
PlatformList
=
JsArray
<
E
>
actual
typealias
PlatformList
=
ArrayList
<
E
>
Members
Members & Extensions
Constructors
Platform
List
Link copied to clipboard
common
darwin
expect
constructor
(
)
actual
constructor
(
)
Functions
add
Link copied to clipboard
common
darwin
expect
fun
<
E
>
PlatformList
<
E
>
.
add
(
item
:
E
)
expect
fun
<
E
>
PlatformList
<
E
>
.
add
(
index
:
Int
,
item
:
E
)
actual
inline
fun
<
E
>
PlatformList
<
E
>
.
add
(
item
:
E
)
actual
inline
fun
<
E
>
PlatformList
<
E
>
.
add
(
index
:
Int
,
item
:
E
)
as
List
Link copied to clipboard
inline
fun
<
E
>
PlatformList
<
E
>
.
asList
(
)
:
List
<
E
>
as
Mutable
List
Link copied to clipboard
common
darwin
expect
fun
<
E
>
PlatformList
<
E
>
.
asMutableList
(
)
:
MutableList
<
E
>
actual
fun
<
E
>
PlatformList
<
E
>
.
asMutableList
(
)
:
MutableList
<
E
>
clear
Link copied to clipboard
common
darwin
expect
fun
<
E
>
PlatformList
<
E
>
.
clear
(
)
actual
inline
fun
<
E
>
PlatformList
<
E
>
.
clear
(
)
contains
Link copied to clipboard
common
darwin
expect
operator
fun
<
E
>
PlatformList
<
E
>
.
contains
(
item
:
E
)
:
Boolean
actual
inline operator
fun
<
E
>
PlatformList
<
E
>
.
contains
(
item
:
E
)
:
Boolean
get
Link copied to clipboard
common
darwin
expect
operator
fun
<
E
>
PlatformList
<
E
>
.
get
(
index
:
Int
)
:
E
actual
inline operator
fun
<
E
>
PlatformList
<
E
>
.
get
(
index
:
Int
)
:
E
index
Of
Link copied to clipboard
common
darwin
expect
fun
<
E
>
PlatformList
<
E
>
.
indexOf
(
item
:
E
)
:
Int
actual
fun
<
E
>
PlatformList
<
E
>
.
indexOf
(
item
:
E
)
:
Int
is
Empty
Link copied to clipboard
common
darwin
expect
fun
<
E
>
PlatformList
<
E
>
.
isEmpty
(
)
:
Boolean
actual
inline
fun
<
E
>
PlatformList
<
E
>
.
isEmpty
(
)
:
Boolean
is
Not
Empty
Link copied to clipboard
inline
fun
<
E
>
PlatformList
<
E
>
.
isNotEmpty
(
)
:
Boolean
iterator
Link copied to clipboard
common
darwin
expect
operator
fun
<
E
>
PlatformList
<
E
>
.
iterator
(
)
:
MutableIterator
<
E
>
actual
operator
fun
<
E
>
PlatformList
<
E
>
.
iterator
(
)
:
MutableIterator
<
E
>
last
Index
Of
Link copied to clipboard
common
darwin
expect
fun
<
E
>
PlatformList
<
E
>
.
lastIndexOf
(
item
:
E
)
:
Int
actual
fun
<
E
>
PlatformList
<
E
>
.
lastIndexOf
(
item
:
E
)
:
Int
remove
At
Link copied to clipboard
common
darwin
expect
fun
<
E
>
PlatformList
<
E
>
.
removeAt
(
index
:
Int
)
actual
inline
fun
<
E
>
PlatformList
<
E
>
.
removeAt
(
index
:
Int
)
set
Link copied to clipboard
common
darwin
expect
fun
<
E
>
PlatformList
<
E
>
.
set
(
index
:
Int
,
item
:
E
)
actual
inline
fun
<
E
>
PlatformList
<
E
>
.
set
(
index
:
Int
,
item
:
E
)
to
List
Link copied to clipboard
inline
fun
<
E
>
PlatformList
<
E
>
.
toList
(
)
:
List
<
E
>
to
Mutable
List
Link copied to clipboard
common
darwin
expect
fun
<
E
>
PlatformList
<
E
>
.
toMutableList
(
)
:
MutableList
<
E
>
actual
fun
<
E
>
PlatformList
<
E
>
.
toMutableList
(
)
:
MutableList
<
E
>
Properties
size
Link copied to clipboard
common
darwin
expect
val
<
E
>
PlatformList
<
E
>
.
size
:
Int
actual
val
<
E
>
PlatformList
<
E
>
.
size
:
Int
storage
Link copied to clipboard
darwin
val
storage
:
NSMutableArray