Package it.unimi.dsi.fastutil.longs

Examples of it.unimi.dsi.fastutil.longs.Long2IntOpenCustomHashMap


            }
            aggregates = builder.build();

            // create hash table
            hashStrategy = new SliceHashStrategy(groupByTupleInfo);
            addressToGroupId = new Long2IntOpenCustomHashMap(expectedGroups, hashStrategy);

            // initialize hash table
            addressToGroupId.defaultReturnValue(-1);
            Slice slice = Slices.allocate((int) BlockBuilder.DEFAULT_MAX_BLOCK_SIZE.toBytes());
            hashStrategy.addSlice(slice);
View Full Code Here

TOP

Related Classes of it.unimi.dsi.fastutil.longs.Long2IntOpenCustomHashMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.