- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for GwtLongAddable (0.05 sec)
-
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LongAddables.java
/** * GWT emulation for LongAddables. * * @author Louis Wasserman */ final class LongAddables { public static LongAddable create() { return new GwtLongAddable(); } private static final class GwtLongAddable implements LongAddable { private long value; public void increment() { value++; } public void add(long x) { value += x; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jan 08 14:27:16 UTC 2025 - 1K bytes - Viewed (0)