Articles tagged: Atomics
Found 13 documents
- Web/JavaScript/Reference/Global_Objects/Atomics The Atomics object provides atomic operations as static methods. They are used with ...
- Web/JavaScript/Reference/Global_Objects/Atomics/add The static Atomics.add() method adds a given value at a given position in the array and returns ...
- Web/JavaScript/Reference/Global_Objects/Atomics/and The static Atomics.and() method computes a bitwise AND with a given value at a given position in ...
- Web/JavaScript/Reference/Global_Objects/Atomics/compareExchange The static Atomics.compareExchange() method exchanges a given replacement value at a given ...
- Web/JavaScript/Reference/Global_Objects/Atomics/exchange The static Atomics.exchange() method exchanges a given value at a given position in the array ...
- Web/JavaScript/Reference/Global_Objects/Atomics/isLockFree The static Atomics.isLockFree() method is used to determine whether to use locks or atomic ...
- Web/JavaScript/Reference/Global_Objects/Atomics/load The static Atomics.load() method returns a value at a given position in the array. This atomic ...
- Web/JavaScript/Reference/Global_Objects/Atomics/or The static Atomics.or() method computes a bitwise OR with a given value at a given position in ...
- Web/JavaScript/Reference/Global_Objects/Atomics/store The static Atomics.store() method stores a given value at the given position in the array and ...
- Web/JavaScript/Reference/Global_Objects/Atomics/sub The static Atomics.sub() method substracts a given value at a given position in the array and ...
- Web/JavaScript/Reference/Global_Objects/Atomics/wait The static Atomics.wait() method verifies that a given position in an Int32Array still contains ...
- Web/JavaScript/Reference/Global_Objects/Atomics/wake The static Atomics.wake() method wakes up some agents that are sleeping in the wait queue.
- Web/JavaScript/Reference/Global_Objects/Atomics/xor The static Atomics.xor() method computes a bitwise XOR with a given value at a given position in ...