public AutoDeltaStringShortMap() { this.changes = new ArrayList<>(5); this.container = new TObjectShortHashMap<>(); this.baselineCommandCount = 0; }
public AutoDeltaObjectShortMap(Function<ByteBuffer, K> keyCreator) { this.changes = new ArrayList<>(5); this.container = new TObjectShortHashMap<>(); this.baselineCommandCount = 0; this.keyCreator = keyCreator; }