Uses of Class
cern.colt.map.AbstractIntDoubleMap
Packages that use AbstractIntDoubleMap
Package
Description
Automatically growing and shrinking maps holding objects or primitive
data types such as int, double, etc.
Matrix implementations; You normally need not look at this package, because all concrete classes implement the abstract interfaces of
cern.colt.matrix, without subsetting or supersetting.-
Uses of AbstractIntDoubleMap in cern.colt.map
Subclasses of AbstractIntDoubleMap in cern.colt.mapModifier and TypeClassDescriptionclassHash map holding (key,value) associations of type (int-->double); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.Methods in cern.colt.map that return AbstractIntDoubleMapModifier and TypeMethodDescriptionAbstractIntDoubleMap.copy()Returns a deep copy of the receiver; usesclone()and casts the result.Methods in cern.colt.map with parameters of type AbstractIntDoubleMapModifier and TypeMethodDescriptionvoidAbstractIntDoubleMap.assign(AbstractIntDoubleMap other) Clears the receiver, then adds all (key,value) pairs of othervalues to it.voidOpenIntDoubleHashMap.assign(AbstractIntDoubleMap other) Clears the receiver, then adds all (key,value) pairs of othervalues to it. -
Uses of AbstractIntDoubleMap in cern.colt.matrix.impl
Fields in cern.colt.matrix.impl declared as AbstractIntDoubleMapModifier and TypeFieldDescriptionprotected AbstractIntDoubleMapSelectedSparseDoubleMatrix1D.elementsprotected AbstractIntDoubleMapSelectedSparseDoubleMatrix2D.elementsprotected AbstractIntDoubleMapSelectedSparseDoubleMatrix3D.elementsThe elements of this matrix.protected AbstractIntDoubleMapSparseDoubleMatrix1D.elementsprotected AbstractIntDoubleMapSparseDoubleMatrix2D.elementsprotected AbstractIntDoubleMapSparseDoubleMatrix3D.elementsConstructors in cern.colt.matrix.impl with parameters of type AbstractIntDoubleMapModifierConstructorDescriptionprotectedSelectedSparseDoubleMatrix1D(int size, AbstractIntDoubleMap elements, int zero, int stride, int[] offsets, int offset) Constructs a matrix view with the given parameters.protectedSelectedSparseDoubleMatrix1D(AbstractIntDoubleMap elements, int[] offsets) Constructs a matrix view with the given parameters.protectedSelectedSparseDoubleMatrix2D(int rows, int columns, AbstractIntDoubleMap elements, int rowZero, int columnZero, int rowStride, int columnStride, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protectedSelectedSparseDoubleMatrix2D(AbstractIntDoubleMap elements, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protectedSelectedSparseDoubleMatrix3D(AbstractIntDoubleMap elements, int[] sliceOffsets, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protectedSparseDoubleMatrix1D(int size, AbstractIntDoubleMap elements, int offset, int stride) Constructs a matrix view with a given number of parameters.protectedSparseDoubleMatrix2D(int rows, int columns, AbstractIntDoubleMap elements, int rowZero, int columnZero, int rowStride, int columnStride) Constructs a view with the given parameters.protectedSparseDoubleMatrix3D(int slices, int rows, int columns, AbstractIntDoubleMap elements, int sliceZero, int rowZero, int columnZero, int sliceStride, int rowStride, int columnStride) Constructs a view with the given parameters.