Pro.Mutable.X.Abstract

abstract class Abstract[A] extends Pro.X.Abstract[A] with Pro.M[A]
Source
X.scala
trait Pro.Mutable[Pro.Mutable.X.Abstract.A]
class Pro.X.Abstract[Pro.Mutable.X.Abstract.A]
trait Pro.X.Base[Pro.Mutable.X.Abstract.A]
trait Able.Doc
trait Able.Tag
trait Pro[Pro.Mutable.X.Abstract.A]
class java.lang.Object
trait scala.Matchable
class Any

Def

def apply(): A

Get value

Get value

Returns property value

   val pro: Pro.M[String] = Pro.M[String]("abc")

   val v1 = pro.apply() // Regular call
   val v2 = pro()       // Scala "syntactic sugar" call
Inherited from
Pro
Source
__.scala
def doc: Doc
Inherited from
Base
Source
X.scala
def tag: String

Make String

Make String

tag returns this instance String representation, which should be used insted of toString

Inherited from
Doc
Source
Doc.scala
def update(v: A): Unit

Updates value

Updates value

Updates property value

   val pro: Pro.M[String] = Pro.M[String]("")

   pro.update("abc") // Regular call

   pro() = "abc"     // Scala "syntactic sugar" call
Inherited from
Mutable
Source
__.scala