Macaulay2 » Documentation
Packages » Macaulay2Doc :: AtomicInt -= ZZ
next | previous | forward | backward | up | index | toc

AtomicInt -= ZZ -- atomic fetch and subtract

Synopsis

Description

The atomic integer x is decreased by y and its original value is returned. This operation occurs atomically and is thread safe.

i1 : x = new AtomicInt from 12

o1 = 12

o1 : AtomicInt
i2 : x -= 10

o2 = 12
i3 : x

o3 = 2

o3 : AtomicInt

Ways to use this method: