- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for LruHashSet (0.54 sec)
-
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)