implicit final class UnifiedSyntax[E, A] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- UnifiedSyntax
- AnyVal
- Any
- Hide All
- Show All
Visibility
- 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): STM[E, A]
- def getAndUpdate(f: (A) ⇒ A): STM[E, A]
- def getAndUpdateSome(pf: PartialFunction[A, A]): STM[E, A]
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def modify[B](f: (A) ⇒ (B, A)): STM[E, B]
- def modifySome[B](default: B)(pf: PartialFunction[A, (B, A)]): STM[E, B]
-
def
toString(): String
- Definition Classes
- Any
- def update(f: (A) ⇒ A): STM[E, Unit]
- def updateAndGet(f: (A) ⇒ A): STM[E, A]
- def updateSome(pf: PartialFunction[A, A]): STM[E, Unit]
- def updateSomeAndGet(pf: PartialFunction[A, A]): STM[E, A]