Interface LongEntityMap<T>

All Superinterfaces:
Map<Long,T>

public interface LongEntityMap<T> extends Map<Long,T>
  • Method Details

    • create

      @Nonnull @CheckReturnValue static <T> LongEntityMap<T> create(@Nonnegative int expectedSize)
    • create

      @Nonnull @CheckReturnValue static <T> LongEntityMap<T> create()
    • iterator

      @Nonnull com.koloboke.collect.LongIterator iterator()
    • put

      @Nullable T put(long key, @Nonnull T value)
    • get

      @Nullable T get(long key)
    • remove

      @Nullable T remove(long key)