final class PropsChildren extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PropsChildren
- 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
count: Int
Return the total number of components in children, equal to the number of times that a callback passed to map or forEach would be invoked.
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def isEmpty: Boolean
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def iterator: Iterator[Node]
-
def
nonEmpty: Boolean
- Annotations
- @inline()
-
def
only(): Node
Return the only child in children.
Return the only child in children. Throws otherwise.
- def raw: raw.PropsChildren
-
def
toJsArray: Array[Node]
Return the children opaque data structure as a flat array with keys assigned to each child.
Return the children opaque data structure as a flat array with keys assigned to each child. Useful if you want to manipulate collections of children in your render methods, especially if you want to reorder or slice this.props.children before passing it down.
- def toList: List[Node]
-
def
toString(): String
- Definition Classes
- PropsChildren → Any
- def toVector: Vector[Node]