Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LruHashSet (0.03 sec)

  1. src/main/java/org/codelibs/core/collection/LruHashSet.java

        private static final Object PRESENT = new Object();
    
        /**
         * Creates a new {@link LruHashSet} with the specified limit size.
         *
         * @param limitSize
         *            the maximum number of elements to retain in the set
         */
        public LruHashSet(final int limitSize) {
            map = new LruHashMap<>(limitSize);
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.7K bytes
    - Viewed (0)
Back to top