Interface LongMapWrapper<V>

    • Method Detail

      • remove

        V remove​(long key)
        Remove value from map by the long key
        Parameters:
        key - to remove
        Returns:
        removed entry if any
      • get

        V get​(long key)
        Collect entry from container using primitive
        Parameters:
        key - to use
        Returns:
        value found
      • containsKey

        boolean containsKey​(long key)
        Verify if entry is present
        Parameters:
        key - to use
        Returns:
        true when present, false otherwise