implicit final class UnifiedSyntax[E, A] extends AnyVal
- Alphabetic
- By Inheritance
- UnifiedSyntax
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
getAndSet(a: A): IO[E, A]
Atomically sets the value associated with the current fiber and returns the old value.
-
def
getAndUpdate(f: (A) ⇒ A): IO[E, A]
Atomically modifies the
FiberRefwith the specified function and returns the old value. -
def
getAndUpdateSome(pf: PartialFunction[A, A]): IO[E, A]
Atomically modifies the
FiberRefwith the specified partial function and returns the old value.Atomically modifies the
FiberRefwith the specified partial function and returns the old value. If the function is undefined on the current value it doesn't change it. -
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
modify[B](f: (A) ⇒ (B, A)): IO[E, B]
Atomically modifies the
FiberRefwith the specified function, which computes a return value for the modification.Atomically modifies the
FiberRefwith the specified function, which computes a return value for the modification. This is a more powerful version ofupdate. -
def
modifySome[B](default: B)(pf: PartialFunction[A, (B, A)]): IO[E, B]
Atomically modifies the
FiberRefwith the specified partial function, which computes a return value for the modification if the function is defined in the current value otherwise it returns a default value.Atomically modifies the
FiberRefwith the specified partial function, which computes a return value for the modification if the function is defined in the current value otherwise it returns a default value. This is a more powerful version ofupdateSome. -
def
toString(): String
- Definition Classes
- Any
-
def
update(f: (A) ⇒ A): IO[E, Unit]
Atomically modifies the
FiberRefwith the specified function. -
def
updateAndGet(f: (A) ⇒ A): IO[E, A]
Atomically modifies the
FiberRefwith the specified function and returns the result. -
def
updateSome(pf: PartialFunction[A, A]): IO[E, Unit]
Atomically modifies the
FiberRefwith the specified partial function.Atomically modifies the
FiberRefwith the specified partial function. If the function is undefined on the current value it doesn't change it. -
def
updateSomeAndGet(pf: PartialFunction[A, A]): IO[E, A]
Atomically modifies the
FiberRefwith the specified partial function.Atomically modifies the
FiberRefwith the specified partial function. If the function is undefined on the current value it returns the old value without changing it.