Uses of Class
gnu.lists.SimpleVector

Packages that use SimpleVector
gnu.kawa.functions Various core run-time functions and operators. 
gnu.kawa.lispexpr Support classes for compiling and running Lisp languages. 
gnu.lists Contains utility classes and interfaces for sequences (lists), arrays, and trees. 
 

Uses of SimpleVector in gnu.kawa.functions
 

Methods in gnu.kawa.functions with parameters of type SimpleVector
static Array Arrays.makeSimple(Array shape, SimpleVector base)
           
 

Uses of SimpleVector in gnu.kawa.lispexpr
 

Methods in gnu.kawa.lispexpr that return SimpleVector
static SimpleVector LispReader.readSimpleVector(LispReader reader, char kind)
           
 

Uses of SimpleVector in gnu.lists
 

Subclasses of SimpleVector in gnu.lists
 class BitVector
          Simple adjustable-length vector of boolean values.
 class F32Vector
          Simple adjustable-length vector whose elements are 32-bit floats.
 class F64Vector
          Simple adjustable-length vector whose elements are 64-bit floats.
 class FString
          Simple adjustable-length vector whose elements are 32-bit floats.
 class FVector
          Simple adjustable-length vector whose elements are Object references.
 class S16Vector
          Simple adjustable-length vector of signed 16-bit integers (shorts).
 class S32Vector
          Simple adjustable-length vector of signed 32-bit integers (ints).
 class S64Vector
          Simple adjustable-length vector of signed 64-bit integers (longs).
 class S8Vector
          Simple adjustable-length vector of signed 8-bit integers (bytes).
 class U16Vector
          Simple adjustable-length vector of unsigned 16-bit integers (shorts).
 class U32Vector
          Simple adjustable-length vector of unsigned 32-bit integers (ints).
 class U64Vector
          Simple adjustable-length vector of unsigned 64-bit integers (longs).
 class U8Vector
          Simple adjustable-length vector of unsigned 8-bit integers (bytes).
 

Fields in gnu.lists declared as SimpleVector
 SimpleVector GapVector.base
           
 

Methods in gnu.lists with parameters of type SimpleVector
protected static int SimpleVector.compareToInt(SimpleVector v1, SimpleVector v2)
           
protected static int SimpleVector.compareToLong(SimpleVector v1, SimpleVector v2)
           
static Array GeneralArray.makeSimple(int[] lowBounds, int[] dimensions, SimpleVector base)
           
 

Constructors in gnu.lists with parameters of type SimpleVector
GapVector(SimpleVector base)
           
StableVector(SimpleVector base)