- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for GwtLongAddable (0.06 seconds)
-
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; }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jan 08 14:27:16 GMT 2025 - 1K bytes - Click Count (0)