Transpiled version (4562L) is out of date.
static int inc(AtomicInteger i) { ret incAtomicInt(i); } static int inc(AtomicInteger i, int delta) { ret incAtomicInt(i, delta); } static long inc(AtomicLong l) { ret incAtomicLong(l); } static long inc(AtomicLong l, long b) { ret l.addAndGet(b); } static int inc(IntVar v) { synchronized(v) { int val = v! + 1; v.set(val); ret val; } } static int inc(int i) { ret i+1; } static long inc(long l) { ret l+1; }
download show line numbers debug dex old transpilations
Travelled to 4 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, vouqrxazstgt
No comments. add comment
Snippet ID: | #1030483 |
Snippet name: | inc - synonym of incAtomicLong + more |
Eternal ID of this version: | #1030483/8 |
Text MD5: | c666ffffd86de76aca8fa33b661bbdc3 |
Author: | stefan |
Category: | |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2022-03-13 03:03:56 |
Source code size: | 463 bytes / 26 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 325 / 418 |
Version history: | 7 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) |