Method |
Description |
|
@typeof ( ) : Type |
|
|
Equals ( object that ) : bool |
|
|
GetHashCode ( ) : int |
|
|
List ( Type of ) : System |
|
|
List ( Type of, ICollection collection ) : System |
|
|
List ( Type of, int capacity ) : System |
|
|
List ( Type of, object values ) : System |
|
|
List ( Type of, object values, int size ) : System |
|
|
List ( string values ) : System |
|
|
add ( object val ) : List |
|
|
addAll ( List list ) : List |
|
|
all ( Func f ) : bool |
|
|
any ( Func f ) : bool |
|
|
binaryFind ( Func f ) : long |
|
|
binarySearch ( object key ) : long |
|
|
binarySearch ( object key, Func f ) : long |
|
|
capacity ( ) : long |
|
|
capacity ( long c ) : void |
|
|
clear ( ) : List |
|
|
contains ( object val ) : bool |
|
|
containsAll ( List list ) : bool |
|
|
containsAny ( List list ) : bool |
|
|
copyInto ( object a, int off, int len ) : object[] |
|
|
dup ( ) : List |
|
|
each ( Func f ) : void |
|
|
eachRange ( Range r, Func f ) : void |
|
|
eachWhile ( Func f ) : object |
|
|
eachr ( Func f ) : void |
|
|
eachrWhile ( Func f ) : object |
|
|
encode ( ObjEncoder @out ) : void |
|
|
exclude ( Func f ) : List |
|
|
fill ( object val, long times ) : List |
|
|
find ( Func f ) : object |
|
|
findAll ( Func f ) : List |
|
|
findIndex ( Func f ) : Long |
|
|
findType ( Type t ) : List |
|
|
first ( ) : object |
|
|
flatten ( ) : List |
|
|
get ( int i ) : object |
|
|
get ( long index ) : object |
|
|
getRange ( Range r ) : List |
|
|
getSafe ( long index ) : object |
|
|
getSafe ( long index, object def ) : object |
|
|
hash ( ) : long |
|
|
index ( object val ) : Long |
|
|
index ( object val, long off ) : Long |
|
|
indexSame ( object val ) : Long |
|
|
indexSame ( object val, long off ) : Long |
|
|
indexr ( object val ) : Long |
|
|
indexr ( object val, long off ) : Long |
|
|
insert ( long index, object val ) : List |
|
|
insertAll ( long index, List list ) : List |
|
|
intersection ( List that ) : List |
|
|
isEmpty ( ) : bool |
|
|
isImmutable ( ) : bool |
|
|
isRO ( ) : bool |
|
|
isRW ( ) : bool |
|
|
join ( ) : string |
|
|
join ( string sep ) : string |
|
|
join ( string sep, Func f ) : string |
|
|
last ( ) : object |
|
|
make ( Type of, long capacity ) : List |
|
|
makeObj ( long capacity ) : List |
|
|
map ( Func f ) : List |
|
|
max ( ) : object |
|
|
max ( Func f ) : object |
|
|
min ( ) : object |
|
|
min ( Func f ) : object |
|
|
moveTo ( object item, long toIndex ) : List |
|
|
of ( ) : Type |
|
|
peek ( ) : object |
|
|
pop ( ) : object |
|
|
push ( object obj ) : List |
|
|
random ( ) : object |
|
|
reduce ( object reduction, Func f ) : object |
|
|
remove ( object val ) : object |
|
|
removeAll ( List toRemove ) : List |
|
|
removeAt ( long index ) : object |
|
|
removeRange ( Range r ) : List |
|
|
removeSame ( object val ) : object |
|
|
reverse ( ) : List |
|
|
ro ( ) : List |
|
|
rw ( ) : List |
|
|
set ( long index, object val ) : List |
|
|
shuffle ( ) : List |
|
|
size ( ) : long |
|
|
size ( long s ) : void |
|
|
sort ( ) : List |
|
|
sort ( Func f ) : List |
|
|
sortr ( ) : List |
|
|
sortr ( Func f ) : List |
|
|
swap ( long a, long b ) : List |
|
|
sz ( ) : int |
|
|
toArray ( ) : object[] |
|
|
toArray ( object a ) : object[] |
|
|
toArray ( object a, int start, int len ) : object[] |
|
|
toCode ( ) : string |
|
|
toImmutable ( ) : object |
|
|
toStr ( ) : string |
|
|
toStrings ( ) : string[] |
|
|
trim ( ) : List |
|
|
union ( List that ) : List |
|
|
unique ( ) : List |
|
|