Rachel
Toggle table of contents
3.5.0
common
Target filter
common
Switch theme
Search in API
Skip to content
Rachel
love.yinlin.core
/
love.yinlin.concurrent
/
Atomic
Atomic
interface
Atomic
<
T
>
Members
Properties
value
Link copied to clipboard
abstract
var
value
:
T
Functions
compare
And
Exchange
Link copied to clipboard
abstract
fun
compareAndExchange
(
expect
:
T
,
update
:
T
)
:
T
compare
And
Set
Link copied to clipboard
abstract
fun
compareAndSet
(
expect
:
T
,
update
:
T
)
:
Boolean
decrement
And
Get
Link copied to clipboard
abstract
fun
decrementAndGet
(
)
:
T
exchange
Link copied to clipboard
abstract
fun
exchange
(
update
:
T
)
:
T
increment
And
Get
Link copied to clipboard
abstract
fun
incrementAndGet
(
)
:
T