Class LongToNumberMap<N extends Comparable<N>>

java.lang.Object
org.ojalgo.array.LongToNumberMap<N>
All Implemented Interfaces:
Map<Long,N>, SequencedMap<Long,N>, SortedMap<Long,N>, Access1D<N>, Mutate1D.Mixable<N>, Structure1D

public final class LongToNumberMap<N extends Comparable<N>> extends Object implements SortedMap<Long,N>, Access1D<N>, Mutate1D.Mixable<N>
A SortedMap with primitive valued long keys and Comparable values (incl. possibly primitive double values). The main benefits of using this class is its use of primitive keys and values, and how it integrates with other parts of ojAlgo. As a general purpose Map implementation (usage with high frequency of randomly ordered put and remove operations) it is not very efficient.