public DictionaryBuilder(Type type)
{
this.blockBuilder = type.createBlockBuilder(new BlockBuilderStatus());
this.hashStrategy = new BlockBuilderHashStrategy();
this.positions = new Int2IntOpenCustomHashMap(1024, hashStrategy);
this.positions.defaultReturnValue(-1);
}