All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carrotsearch.hppc.Preallocable Maven / Gradle / Ivy

There is a newer version: 4.15.102
Show newest version
package com.carrotsearch.hppc;

/**
 * Anything that can preallocate buffers given prior knowledge of the number of
 * stored elements.
 */
public interface Preallocable {
  /**
   * Ensure this container can hold at least the given number of elements
   * without resizing its buffers.
   * 
   * @param expectedElements
   *          The total number of elements, inclusive.
   */
  public void ensureCapacity(int expectedElements);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy