Class GridLeanSet<E>

    • Constructor Detail

      • GridLeanSet

        public GridLeanSet()
        Creates a new, empty set with a default initial capacity, load factor, and concurrencyLevel.
      • GridLeanSet

        public GridLeanSet​(int size)
        Constructs lean set with initial size.
        Parameters:
        size - Initial size.
      • GridLeanSet

        @Deprecated
        public GridLeanSet​(Collection<E> c)
        Deprecated.
        Creates a new set with the same elements as the given collection. The collection is created with a capacity of twice the number of mappings in the given map or 11 (whichever is greater), and a default load factor and concurrencyLevel.
        Parameters:
        c - Collection to add.