public ScoredIdListBuilder(int cap) {
initialize(cap);
}
private void initialize(int cap) {
ids = new CompactableLongArrayList(cap);
scores = new DoubleArrayList(cap);
channels = new Reference2ObjectArrayMap<Symbol, ChannelStorage>();
typedChannels = new Reference2ObjectArrayMap<TypedSymbol<?>, TypedChannelStorage<?>>();
}