Uses of Class
org.kink_lang.kink.internal.vec.VecInternal
Packages that use VecInternal
-
Uses of VecInternal in org.kink_lang.kink.internal.vec
Subclasses of VecInternal in org.kink_lang.kink.internal.vecModifier and TypeClassDescriptionfinal class
Immutable vec internal for elements like ['A' a 'B' b 'C' c].Methods in org.kink_lang.kink.internal.vec that return VecInternalModifier and TypeMethodDescriptionInserts a val to the end.VecInternal.copy()
Returns the new vec internal copying the whole elements ofthis
vec internal.VecInternal.copyRange
(int from, int to) Returns a new vec internal copied from the range ofthis
vec internal.VecInternal.copyRangeWithCapa
(int from, int to, int newCapa) Returns a new vec internal copied from the range ofthis
vec internal.abstract VecInternal
Inserts a val to the position index.TraitVecInternal.insertAll
(int index, VecInternal added) abstract VecInternal
VecInternal.insertAll
(int index, VecInternal added) Inserts the elements ofadded
to the position index.TraitVecInternal.insertRange
(int index, Val[] src, int from, int to) abstract VecInternal
VecInternal.insertRange
(int index, Val[] src, int from, int to) Inserts the elements in the range ofsrc
to the position index.static VecInternal
Returns a new vec internal containing the elements of the list.static VecInternal
Returns a new vec internal.static VecInternal
Returns a new vec containing elements betweenfrom
(inclusive) andto
(exclusive) on the array.static VecInternal
Returns a new vec internal.static VecInternal
Returns a new vec internal.static VecInternal
Returns a new vec internal.static VecInternal
Returns a new empty vec internal with the specified capa.TraitVecInternal.remove
(int index) abstract VecInternal
VecInternal.remove
(int index) Removes the indexed element from the vec internal.TraitVecInternal.removeRange
(int from, int to) abstract VecInternal
VecInternal.removeRange
(int from, int to) Removes the range between the indices from the vec internal.abstract VecInternal
Sets the indexed element.Methods in org.kink_lang.kink.internal.vec with parameters of type VecInternalModifier and TypeMethodDescriptionTraitVecInternal.insertAll
(int index, VecInternal added) abstract VecInternal
VecInternal.insertAll
(int index, VecInternal added) Inserts the elements ofadded
to the position index.