A B C D E F G I K M N P R S T U V _ 
All Classes All Packages

S

set(int, E) - Method in interface me.wobblyyyy.edt.Arrayable
Set a value to a given index.
set(int, E) - Method in class me.wobblyyyy.edt.DynamicArray
Set a value at a specific index.
set(int, E) - Method in class me.wobblyyyy.edt.FrozenArray
Can't be executed - don't do anything.
set(int, E) - Method in class me.wobblyyyy.edt.StaticArray
Set a value at a given index.
set(int, T) - Method in class me.wobblyyyy.edt.functional.Analyzable
Set a value at a specific index.
setA(A) - Method in class me.wobblyyyy.edt.Trio
 
setB(B) - Method in class me.wobblyyyy.edt.Trio
 
setByA(A, B, C) - Method in class me.wobblyyyy.edt.TrioMap
Set B and C values based on A.
setByB(A, B, C) - Method in class me.wobblyyyy.edt.TrioMap
Set A and C values based on B.
setByC(A, B, C) - Method in class me.wobblyyyy.edt.TrioMap
Set A and B values based on C.
setC(C) - Method in class me.wobblyyyy.edt.Trio
 
size() - Method in interface me.wobblyyyy.edt.Arrayable
Get the size of the array.
size() - Method in class me.wobblyyyy.edt.DynamicArray
Get the size of the active portion of the element array.
size() - Method in class me.wobblyyyy.edt.DynamicMap
Get the size of the map.
size() - Method in class me.wobblyyyy.edt.FrozenArray
Get the size of the array.
size() - Method in class me.wobblyyyy.edt.FrozenMap
Get the size of the map.
size() - Method in interface me.wobblyyyy.edt.Mappable
Get the size of the map.
size() - Method in class me.wobblyyyy.edt.StaticArray
Get the size of the array.
size() - Method in class me.wobblyyyy.edt.StaticMap
Get the size of the map.
size() - Method in class me.wobblyyyy.edt.TrioMap
Get the size of the trio map.
StaticArray<E> - Class in me.wobblyyyy.edt
A non-resizable and static array.
StaticArray(int) - Constructor for class me.wobblyyyy.edt.StaticArray
Create a new static array.
StaticArray(E...) - Constructor for class me.wobblyyyy.edt.StaticArray
Create a new static array.
StaticArray(Arrayable<E>) - Constructor for class me.wobblyyyy.edt.StaticArray
Create a new StaticArray instance by using an Arrayable object to get the newly-created static array's contents.
StaticBoolean - Class in me.wobblyyyy.edt.arrays
A specialized static array type designed to reduce clutter in code (and the amount of those damn diamond brackets).
StaticBoolean(int) - Constructor for class me.wobblyyyy.edt.arrays.StaticBoolean
Create a new static array.
StaticBoolean(Boolean...) - Constructor for class me.wobblyyyy.edt.arrays.StaticBoolean
Create a new static array.
StaticBoolean(Arrayable<Boolean>) - Constructor for class me.wobblyyyy.edt.arrays.StaticBoolean
Create a new StaticArray instance by using an Arrayable object to get the newly-created static array's contents.
StaticDouble - Class in me.wobblyyyy.edt.arrays
A specialized static array type designed to reduce clutter in code (and the amount of those damn diamond brackets).
StaticDouble(int) - Constructor for class me.wobblyyyy.edt.arrays.StaticDouble
Create a new static array.
StaticDouble(Double...) - Constructor for class me.wobblyyyy.edt.arrays.StaticDouble
Create a new static array.
StaticDouble(Arrayable<Double>) - Constructor for class me.wobblyyyy.edt.arrays.StaticDouble
Create a new StaticArray instance by using an Arrayable object to get the newly-created static array's contents.
StaticFloat - Class in me.wobblyyyy.edt.arrays
A specialized static array type designed to reduce clutter in code (and the amount of those damn diamond brackets).
StaticFloat(int) - Constructor for class me.wobblyyyy.edt.arrays.StaticFloat
Create a new static array.
StaticFloat(Float...) - Constructor for class me.wobblyyyy.edt.arrays.StaticFloat
Create a new static array.
StaticFloat(Arrayable<Float>) - Constructor for class me.wobblyyyy.edt.arrays.StaticFloat
Create a new StaticArray instance by using an Arrayable object to get the newly-created static array's contents.
StaticInteger - Class in me.wobblyyyy.edt.arrays
A specialized static array type designed to reduce clutter in code (and the amount of those damn diamond brackets).
StaticInteger(int) - Constructor for class me.wobblyyyy.edt.arrays.StaticInteger
Create a new static array.
StaticInteger(Integer...) - Constructor for class me.wobblyyyy.edt.arrays.StaticInteger
Create a new static array.
StaticInteger(Arrayable<Integer>) - Constructor for class me.wobblyyyy.edt.arrays.StaticInteger
Create a new StaticArray instance by using an Arrayable object to get the newly-created static array's contents.
StaticMap<K,​V> - Class in me.wobblyyyy.edt
An implementation of the Mappable interface designed for storing a set of final keys and non-final values.
StaticMap(K[]) - Constructor for class me.wobblyyyy.edt.StaticMap
Create a new StaticMap instance.
StaticMap(K[], V[]) - Constructor for class me.wobblyyyy.edt.StaticMap
Create a new StaticMap instance.
StaticMap(Arrayable<K>) - Constructor for class me.wobblyyyy.edt.StaticMap
Create a new StaticMap instance.
StaticMap(Arrayable<K>, Arrayable<V>) - Constructor for class me.wobblyyyy.edt.StaticMap
Create a new StaticMap instance.
StaticMap(Mappable<K, V>) - Constructor for class me.wobblyyyy.edt.StaticMap
Create a new StaticMap by using a regular map as a base.
StaticString - Class in me.wobblyyyy.edt.arrays
A specialized static array type designed to reduce clutter in code (and the amount of those damn diamond brackets).
StaticString(int) - Constructor for class me.wobblyyyy.edt.arrays.StaticString
Create a new static array.
StaticString(String...) - Constructor for class me.wobblyyyy.edt.arrays.StaticString
Create a new static array.
StaticString(Arrayable<String>) - Constructor for class me.wobblyyyy.edt.arrays.StaticString
Create a new StaticArray instance by using an Arrayable object to get the newly-created static array's contents.
StringMap<V> - Class in me.wobblyyyy.edt.maps
A specialized dynamic map type designed to reduce clutter in code (and the amount of those damn diamond brackets).
StringMap() - Constructor for class me.wobblyyyy.edt.maps.StringMap
Create a new DynamicMap without any elements.
StringMap(int) - Constructor for class me.wobblyyyy.edt.maps.StringMap
Create a new DynamicMap without any elements.
StringMap(Map<String, V>) - Constructor for class me.wobblyyyy.edt.maps.StringMap
Create a new DynamicMap using a map as a base.
StringMap(KeyValue<String, V>[]) - Constructor for class me.wobblyyyy.edt.maps.StringMap
Create a new DynamicMap, using an array of key-value pairs of the type K, V.
sum - Variable in class me.wobblyyyy.edt.functional.Analyzable
A sum of all of the numbers.
supplier - Variable in class me.wobblyyyy.edt.ArrayIterator
Provide a method of accessing the original arrayable element.
supplier - Variable in class me.wobblyyyy.edt.MapIterator
Internal reference to the MappableSupplier that provides this iterator class with a Mappable object.
supplier - Variable in class me.wobblyyyy.edt.TrioIterator
An internal supplier for the TrioMap that this class will iterate over.
A B C D E F G I K M N P R S T U V _ 
All Classes All Packages