Class/Object

Chisel

Bool

Related Docs: object Bool | package Chisel

Permalink

class Bool extends UInt

Source
Bool.scala
Linear Supertypes
UInt, Num[UInt], Bits, proc, Data, Node, Nameable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Bool
  2. UInt
  3. Num
  4. Bits
  5. proc
  6. Data
  7. Node
  8. Nameable
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Bool()

    Permalink

Type Members

  1. type T = UInt

    Permalink
    Definition Classes
    UInt

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. def ##[T <: Data](right: T): Bool.this.type

    Permalink

    Cat bits together to into a single data object with the width of both combined

    Cat bits together to into a single data object with the width of both combined

    Definition Classes
    BitsData
  3. def ##(b: Node): Node

    Permalink

    The cat operator to combine two values

    The cat operator to combine two values

    0x5 ## 0x3 => 0x53
    b

    Node to cat after

    returns

    a new node as the combination of both this node and b

    Definition Classes
    Node
  4. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  5. def %(b: SInt): SInt

    Permalink
    Definition Classes
    UInt
  6. def %(b: UInt): UInt

    Permalink
    Definition Classes
    UIntNum
  7. def %(b: Bits): Bits

    Permalink
    Definition Classes
    Bits
  8. def &(b: Bits): Bool.this.type

    Permalink

    Bitwise and

    Bitwise and

    Definition Classes
    Bits
  9. def &&(b: Bool): Bool

    Permalink

    Logical and, is equivalent to bitwise and

  10. def *(b: SInt): SInt

    Permalink
    Definition Classes
    UInt
  11. def *(b: UInt): UInt

    Permalink
    Definition Classes
    UIntNum
  12. def *(b: Bits): Bits

    Permalink
    Definition Classes
    Bits
  13. def +(b: SInt): SInt

    Permalink
    Definition Classes
    UInt
  14. def +(b: UInt): UInt

    Permalink
    Definition Classes
    UIntNum
  15. def +(b: Bits): Bits

    Permalink
    Definition Classes
    Bits
  16. def +%(b: UInt): UInt

    Permalink

    chisel3 add-wrap operator

    chisel3 add-wrap operator

    Definition Classes
    UInt
  17. def +&(b: UInt): UInt

    Permalink

    chisel3 add (width +1) operator

    chisel3 add (width +1) operator

    Definition Classes
    UInt
  18. def -(b: SInt): SInt

    Permalink
    Definition Classes
    UInt
  19. def -(b: UInt): UInt

    Permalink
    Definition Classes
    UIntNum
  20. def -(b: Bits): Bits

    Permalink
    Definition Classes
    Bits
  21. def -%(b: UInt): UInt

    Permalink

    chisel3 sub-wrap operator

    chisel3 sub-wrap operator

    Definition Classes
    UInt
  22. def -&(b: UInt): UInt

    Permalink

    chisel3 sub (width +1) operator

    chisel3 sub (width +1) operator

    Definition Classes
    UInt
  23. def /(b: SInt): SInt

    Permalink
    Definition Classes
    UInt
  24. def /(b: UInt): UInt

    Permalink
    Definition Classes
    UIntNum
  25. def /(b: Bits): Bits

    Permalink
    Definition Classes
    Bits
  26. def :=(that: Data): Unit

    Permalink
    Definition Classes
    Data
  27. def <(b: UInt): Bool

    Permalink
    Definition Classes
    UIntNum
  28. def <<(i: Int): UInt

    Permalink
    Definition Classes
    UInt
  29. def <<(b: UInt): Bool.this.type

    Permalink

    Shift left operation

    Shift left operation

    Definition Classes
    Bits
  30. def <=(b: UInt): Bool

    Permalink
    Definition Classes
    UIntNum
  31. def <>(src: Node): Unit

    Permalink

    Connect I/O of modules with the same name

    Connect I/O of modules with the same name

    src

    Node to attempt to connect to this instantiation

    Definition Classes
    BitsNode
  32. def =/=(that: BitPat): Bool

    Permalink
    Definition Classes
    Bits
  33. def =/=(b: Bits): Bool

    Permalink

    not equal to

    not equal to

    Definition Classes
    Bits
  34. def =/=[T <: Data](right: T): Bool

    Permalink
    Definition Classes
    Data
  35. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  36. def ===(b: UInt): Bool

    Permalink
    Definition Classes
    UInt
  37. def ===(that: BitPat): Bool

    Permalink
    Definition Classes
    Bits
  38. def ===[T <: Data](right: T): Bool

    Permalink
    Definition Classes
    BitsData
  39. def >(b: UInt): Bool

    Permalink
    Definition Classes
    UIntNum
  40. def >=(b: UInt): Bool

    Permalink
    Definition Classes
    UIntNum
  41. def >>(i: Int): UInt

    Permalink
    Definition Classes
    UInt
  42. def >>(b: UInt): UInt

    Permalink
    Definition Classes
    UInt
  43. def ?(b: UInt): UInt

    Permalink
    Definition Classes
    UInt
  44. def W0Wtransform(): Unit

    Permalink

    Eliminate any zero-width wires attached to this node

    Eliminate any zero-width wires attached to this node

    returns

    if the node was modified

    Definition Classes
    Node
  45. def ^(b: Bits): Bool.this.type

    Permalink

    Bitwise xor

    Bitwise xor

    Definition Classes
    Bits
  46. def ^^(src: Node): Unit

    Permalink
    Definition Classes
    Node
  47. val _id: Int

    Permalink

    The unique id of this node

    The unique id of this node

    Definition Classes
    Node
  48. def _isComplementOf(x: Node): Boolean

    Permalink
    Definition Classes
    Node
  49. def andR(): Bool

    Permalink

    reduction and, and all bits together

    reduction and, and all bits together

    Definition Classes
    Bits
  50. final def apply(range: (Int, Int)): UInt

    Permalink

    Extract a range of bits, inclusive from hi to lo

    Extract a range of bits, inclusive from hi to lo

    Definition Classes
    Bits
  51. final def apply(hi: UInt, lo: UInt): UInt

    Permalink

    Extract a range of bits, inclusive from hi to lo

    Extract a range of bits, inclusive from hi to lo

    Definition Classes
    Bits
  52. final def apply(hi: Int, lo: Int): UInt

    Permalink

    Extract a range of bits, inclusive from hi to lo

    Extract a range of bits, inclusive from hi to lo

    myBits = 0x5, myBits(1,0) => 0x3
    Definition Classes
    Bits
  53. final def apply(bit: UInt): Bool

    Permalink

    Extract a single bit at position 'bit' as a Bool

    Extract a single bit at position 'bit' as a Bool

    Definition Classes
    Bits
  54. final def apply(bit: Int): Bool

    Permalink

    Extract a single Bool at index *bit*.

    Extract a single Bool at index *bit*.

    Definition Classes
    Bits
  55. def apply(name: String): Data

    Permalink
    Definition Classes
    BitsData
  56. def asDirectionless(): Bool.this.type

    Permalink

    Set this Bits instantiation to be neither of INPUT or OUTPUT

    Set this Bits instantiation to be neither of INPUT or OUTPUT

    Definition Classes
    BitsData
  57. def asInput(): Bool.this.type

    Permalink

    Set this Bits instatiation to be an INPUT

    Set this Bits instatiation to be an INPUT

    Definition Classes
    BitsData
  58. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  59. def asOutput(): Bool.this.type

    Permalink

    Set this Bits instatiation to be an OUTPUT

    Set this Bits instatiation to be an OUTPUT

    returns

    this instance with its exact type.

    Definition Classes
    BitsData
  60. final def asSInt(): SInt

    Permalink
    Definition Classes
    Bits
  61. final def asTypeFor(node: Node): Bool.this.type

    Permalink

    assigns this instance as the data type for *node*.

    assigns this instance as the data type for *node*.

    Attributes
    protected[Chisel]
    Definition Classes
    Bits
  62. final def asUInt(): UInt

    Permalink
    Definition Classes
    Bits
  63. def assign(src: Node): Unit

    Permalink
    Definition Classes
    BitsNode
  64. def bitSet(off: UInt, dat: UInt): Bool.this.type

    Permalink

    Set bit 'off' in data dat

    Set bit 'off' in data dat

    off

    which bit to set

    dat

    A UInt in which to set the bit

    Definition Classes
    Bits
  65. var canBeUsedAsDefault: Boolean

    Permalink
    Attributes
    protected[Chisel]
  66. def canCSE: Boolean

    Permalink
    Definition Classes
    Node
  67. lazy val chiselName: String

    Permalink
    Definition Classes
    Node
  68. var clock: Option[Clock]

    Permalink

    The clock for this node

    The clock for this node

    Definition Classes
    Node
  69. def clone(): Bool.this.type

    Permalink
    Definition Classes
    Data → AnyRef
  70. def cloneType(): Bool.this.type

    Permalink

    Copy this instantiation of the Chisel Data type with all parameters such as width and I/O direction the same

    Copy this instantiation of the Chisel Data type with all parameters such as width and I/O direction the same

    Definition Classes
    BitsData
  71. def colonEquals(src: Bits): Unit

    Permalink

    Implementation of := operator, assigns value to this Bool

    Implementation of := operator, assigns value to this Bool

    Attributes
    protected
    Definition Classes
    BoolBitsData
  72. def colonEquals[T <: Data](that: Seq[T]): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Data
  73. def colonEquals(that: Bundle): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Data
  74. var comp: Option[proc]

    Permalink
    Definition Classes
    Data
  75. def componentOf: Module

    Permalink

    Get the module that this node is a part of or the top module if not assigned yet

    Get the module that this node is a part of or the top module if not assigned yet

    returns

    The module that this node is a part of

    Definition Classes
    Node
  76. val consumers: LinkedHashSet[Node]

    Permalink

    nodes that consume one of my outputs

    nodes that consume one of my outputs

    Definition Classes
    Node
  77. def create(dir: IODirection, width: Int): Unit

    Permalink
    Definition Classes
    Bits
  78. def dblLitValue: Double

    Permalink

    Convert the node literal to a Double

    Convert the node literal to a Double

    Definition Classes
    Node
  79. def default: proc

    Permalink
    Attributes
    protected
    Definition Classes
    proc
  80. def defaultMissing: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    proc
  81. def defaultRequired: Boolean

    Permalink
    Definition Classes
    Bitsproc
  82. var dir: IODirection

    Permalink
    Definition Classes
    Bits
  83. def doProcAssign(src: Node, cond: Bool): Unit

    Permalink
    Attributes
    protected[Chisel]
    Definition Classes
    proc
  84. var driveRand: Boolean

    Permalink
    Definition Classes
    Node
  85. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  86. def equals(that: Any): Boolean

    Permalink

    Compare two nodes

    Compare two nodes

    that

    the node to compare with

    Definition Classes
    Node → AnyRef → Any
  87. def equalsForCSE(x: Node): Boolean

    Permalink
    Definition Classes
    Node
  88. def error(b: Bits): Bits

    Permalink

    Error shown when operation is not defined

    Error shown when operation is not defined

    Definition Classes
    Bits
    Exceptions thrown

    ChiselException if the operation is not defined

  89. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  90. def flatten: Array[(String, Bits)]

    Permalink
    Definition Classes
    BitsData
  91. def flip(): Bool.this.type

    Permalink

    Change INPUT to OUTPUT and OUTPUT to INPUT

    Change INPUT to OUTPUT and OUTPUT to INPUT

    Definition Classes
    BitsData
  92. def floLitValue: Float

    Permalink

    Convert the node literal to a Float

    Convert the node literal to a Float

    Definition Classes
    Node
  93. def forceMatchingWidths: Unit

    Permalink

    Force the width of this nodes input to have the same width this if known if input node width is known force width of this node

    Force the width of this nodes input to have the same width this if known if input node width is known force width of this node

    Definition Classes
    BitsNode
  94. def fromBits(b: Bits): Bool.this.type

    Permalink
    Definition Classes
    Data
  95. def fromInt(x: Int): Bool.this.type

    Permalink

    Create a Bool from an Int

    Create a Bool from an Int

    Definition Classes
    BoolUIntBits
  96. def fromNode(n: Node): Bool.this.type

    Permalink

    Factory method to create and assign a *Bool* type to a Node *n*.

    Factory method to create and assign a *Bool* type to a Node *n*.

    Definition Classes
    BoolUIntData
  97. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  98. def getNode: Node

    Permalink

    returns

    The root node input

    Definition Classes
    BitsNode
  99. def getWidth(): Int

    Permalink

    returns

    the width or number of bits used by this node

    Definition Classes
    Node
    Exceptions thrown

    ChiselException if the width of the node is unknown

  100. def hashCode(): Int

    Permalink

    returns

    the unique hashCode for this node

    Definition Classes
    Node → AnyRef → Any
  101. def hashCodeForCSE: Int

    Permalink
    Definition Classes
    Node
  102. def illegalAssignment(that: Any): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Data
  103. def infer: Boolean

    Permalink

    Called while we're walking the graph inferring the width of nodes.

    Called while we're walking the graph inferring the width of nodes. We return true if we should continue to walk the graph, either because there's a node whose width we don't know, or because we updated a node's width.

    Definition Classes
    Node
  104. def init(n: String, w: Int, ins: Node*): Node

    Permalink

    Init the node and calculate its width and add inputs to the node

    Init the node and calculate its width and add inputs to the node

    n

    name of node

    w

    the bit width of the node

    ins

    Nodes that are inputs to this node

    Definition Classes
    Node
  105. def init(n: String, widthFunc: (⇒ Node) ⇒ Width, ins: Node*): Node

    Permalink

    Init the node and calculate its width and add inputs to the node

    Init the node and calculate its width and add inputs to the node

    n

    name of node

    widthFunc

    the function to use to calculate the width of the node

    ins

    Nodes that are inputs to this node

    Definition Classes
    Node
  106. def initOf(n: String, widthfunc: (⇒ Node) ⇒ Width, ins: Seq[Node]): Node

    Permalink

    Init the node and calculate its width and add inputs to the node

    Init the node and calculate its width and add inputs to the node

    n

    name of node

    widthfunc

    the function to use to calculate the width of the node

    ins

    Nodes that are inputs to this node

    Definition Classes
    Node
  107. val inputs: ArrayBuffer[Node]

    Permalink

    The inputs that this node depends on

    The inputs that this node depends on

    Definition Classes
    Node
  108. def isDirectionless: Boolean

    Permalink

    returns

    this instantiation is neither of INPUT or OUTPUT

    Definition Classes
    BitsData
  109. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  110. def isIo: Boolean

    Permalink

    returns

    this node is an I/O Node for a module

    Definition Classes
    Node
  111. def isIo_=(isIo: Boolean): Unit

    Permalink
    Attributes
    protected[Chisel]
    Definition Classes
    Node
  112. final def isLit: Boolean

    Permalink

    This function determines if a node is a literal, a fixed value

    This function determines if a node is a literal, a fixed value

    Definition Classes
    Node
  113. def isTopLevelIO: Boolean

    Permalink

    returns

    is this node I/O for the top level module

    Definition Classes
    Node
  114. def isTrue: Boolean

    Permalink
  115. var isTypeNode: Boolean

    Permalink
    Definition Classes
    Node
  116. def isTypeOnly: Boolean

    Permalink

    Chisel3 - type-only nodes (no data - no initialization or assignment) This is used to determine which nodes must be Wire() wrapped, and whether Wire() wrapping of the node is legal or not.

    Chisel3 - type-only nodes (no data - no initialization or assignment) This is used to determine which nodes must be Wire() wrapped, and whether Wire() wrapping of the node is legal or not.

    Definition Classes
    DataNode
  117. def isUsedByClockHi: Boolean

    Permalink

    returns

    this node is a Register

    Definition Classes
    Node
  118. def isWired: Boolean

    Permalink
    Definition Classes
    Data
  119. def isZeroWidth: Boolean

    Permalink

    returns

    this node has zero-width

    Definition Classes
    Node
  120. val line: StackTraceElement

    Permalink

    The trace information for chisel for this node

    The trace information for chisel for this node

    Definition Classes
    Node
  121. def litOf: Literal

    Permalink

    returns

    the literal value of a node

    Definition Classes
    Node
    Exceptions thrown

    ChiselException if there is no literal value available

  122. def litValue(default: BigInt = BigInt(-1)): BigInt

    Permalink

    returns

    the literal value of the node as a BigInt

    Bool(true).litValue() => BigInt(1)
    Definition Classes
    Node
  123. def matchWidth(w: Width): Node

    Permalink
    Definition Classes
    BitsNode
  124. def max(b: UInt): UInt

    Permalink
    Definition Classes
    Num
  125. def maybeFlatten: Seq[Node]

    Permalink

    Deprecated: Do not use

    Deprecated: Do not use

    Definition Classes
    Node
  126. def min(b: UInt): UInt

    Permalink
    Definition Classes
    Num
  127. var modified: Boolean

    Permalink
    Definition Classes
    Node
  128. def muxes: Seq[Mux]

    Permalink
    Attributes
    protected[Chisel]
    Definition Classes
    proc
  129. var name: String

    Permalink

    Name of the instance.

    Name of the instance.

    Definition Classes
    Nameable
  130. def nameIt(path: String, isNamingIo: Boolean): Unit

    Permalink

    name this node

    name this node

    Definition Classes
    DataNode
    Note

    use setName in Node rather than this directly

  131. var named: Boolean

    Permalink

    named is used to indicate that name was set explicitly and should not be overriden

    named is used to indicate that name was set explicitly and should not be overriden

    Definition Classes
    Nameable
  132. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  133. def needWidth(): Int

    Permalink

    returns

    the bitWidth of the node

    Definition Classes
    Node
    Exceptions thrown

    ChiselException if the width is not yet defined

  134. final def newBinaryOp(right: Bits, opName: String): Bool.this.type

    Permalink
    Attributes
    protected
    Definition Classes
    Bits
  135. final def newLogicalOp(right: Bits, opName: String): Bool

    Permalink
    Attributes
    protected
    Definition Classes
    Bits
  136. final def newReductionOp(opName: String): Bool

    Permalink
    Attributes
    protected
    Definition Classes
    Bits
  137. final def newUnaryOp(opName: String): Bool.this.type

    Permalink
    Attributes
    protected
    Definition Classes
    Bits
  138. def next: Node

    Permalink
    Attributes
    protected[Chisel]
    Definition Classes
    proc
  139. def nextOpt: Option[Node]

    Permalink
    Attributes
    protected[Chisel]
    Definition Classes
    proc
  140. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  141. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  142. def orR(): Bool

    Permalink

    reduction or, or all bits together

    reduction or, or all bits together

    Definition Classes
    Bits
  143. def params: Parameters

    Permalink
    Definition Classes
    Data
  144. def printTree(writer: PrintStream, depth: Int = 4, indent: String = ""): Unit

    Permalink

    Prints all members of a node and recursively its inputs up to a certain depth level This method is purely used for debugging

    Prints all members of a node and recursively its inputs up to a certain depth level This method is purely used for debugging

    Definition Classes
    Node
  145. def procAssign(src: Node): Unit

    Permalink
    Definition Classes
    Bitsproc
  146. var procAssigned: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    proc
  147. var prune: Boolean

    Permalink
    Definition Classes
    Node
  148. def replaceTree(newNode: Node): Unit

    Permalink

    Replace the subtree starting from this node with the indicated replacement

    Replace the subtree starting from this node with the indicated replacement

    newNode

    The node to start tree from

    Definition Classes
    Node
  149. def review(): Unit

    Permalink

    Review a node for optimization possibilities if its children have been updated

    Review a node for optimization possibilities if its children have been updated

    Definition Classes
    Node
  150. def setDefault(src: Node): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    proc
  151. def setIsTypeNode: Unit

    Permalink

    make this node a type node

    make this node a type node

    Definition Classes
    Data
  152. def setIsWired(value: Boolean): Unit

    Permalink
    Definition Classes
    Data
  153. def setName(n: String): Unit

    Permalink

    Set the name of this module to the string 'n'

    Set the name of this module to the string 'n'

    Definition Classes
    Nameable
    Example:
    1. my.io.node.setName("MY_IO_NODE")
  154. def setWidth(w: Int): Unit

    Permalink

    Force the bit width of a node

    Force the bit width of a node

    w

    the bit width to force

    Definition Classes
    Node
  155. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  156. def toBits(): UInt

    Permalink

    returns

    This node as a UInt

    Definition Classes
    UIntNode
  157. def toBool(): Bool

    Permalink

    Try to convert this data to a Bool

    Try to convert this data to a Bool

    Definition Classes
    Data
    Exceptions thrown

    ChiselException if the width is not 1

  158. def toBools: Vec[Bool]

    Permalink

    Split up this bits instantiation to a Vec of Bools

    Split up this bits instantiation to a Vec of Bools

    Definition Classes
    Bits
  159. lazy val toNode: Node

    Permalink

    returns

    This node

    Definition Classes
    DataNode
  160. def toSInt(): SInt

    Permalink
    Definition Classes
    Bits
  161. def toString(): String

    Permalink
    Definition Classes
    Bits → AnyRef → Any
  162. def toUInt(): UInt

    Permalink
    Definition Classes
    Bits
  163. def unary_!(): Bool

    Permalink
    Definition Classes
    BoolUInt
  164. def unary_-(): UInt

    Permalink
    Definition Classes
    UIntNum
  165. def unary_~(): Bool.this.type

    Permalink

    invert all bits with ~

    invert all bits with ~

    Definition Classes
    Bits
  166. def usesInClockHi(i: Node): Boolean

    Permalink
    Definition Classes
    Node
  167. def verifyMuxes: Unit

    Permalink
    Attributes
    protected[Chisel]
    Definition Classes
    proc
  168. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  169. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  170. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  171. def xorR(): Bool

    Permalink

    reduction xor, xor all bits together

    reduction xor, xor all bits together

    Definition Classes
    Bits
  172. def zext(): SInt

    Permalink

    Convert a UInt to an SInt by added a MSB zero

    Convert a UInt to an SInt by added a MSB zero

    Definition Classes
    UInt
  173. def |(b: Bits): Bool.this.type

    Permalink

    Bitwise or

    Bitwise or

    Definition Classes
    Bits
  174. def ||(b: Bool): Bool

    Permalink

    Logical or, is equivalent to bitwise or

Deprecated Value Members

  1. def !=(that: BitPat): Bool

    Permalink
    Definition Classes
    Bits
    Annotations
    @deprecated
    Deprecated

    (Since version 3) Use =/= rather than != for chisel comparison

  2. def !=(b: Bits): Bool

    Permalink
    Definition Classes
    Bits
    Annotations
    @deprecated
    Deprecated

    (Since version 3) Use =/= rather than != for chisel comparison

Inherited from UInt

Inherited from Num[UInt]

Inherited from Bits

Inherited from proc

Inherited from Data

Inherited from Node

Inherited from Nameable

Inherited from AnyRef

Inherited from Any

Ungrouped