AtomicRef

kyo.AtomicRef
final class AtomicRef[T] extends AnyVal

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def cas(curr: T, next: T): Boolean < IOs
def get: T < IOs
def getAndSet(v: T): T < IOs
def lazySet(v: T): Unit < IOs
def set(v: T): Unit < IOs
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any
def update[S](f: T => T): Unit < IOs
def updateAndGet[S](f: T => T): T < IOs