767778798081828384
/** * Creates an empty {@code Counter}. */ public PairCounter() { counts = new TLongIntHashMap(); elementIndices = new HashIndexer<T>(); sum = 0; }
29303132333435
*/ public class TIntPairIntHashMap { private TLongIntHashMap map; public TIntPairIntHashMap() { map = new TLongIntHashMap(100); }
33343536373839
public TIntPairIntHashMap() { map = new TLongIntHashMap(100); } public TIntPairIntHashMap(int capacity) { map = new TLongIntHashMap(capacity); }