Packages

t

h8io.cfg.Node

IContainer

sealed trait IContainer[+I <: Id, CI <: Id] extends IValue[I] with (CI) => INode[CI] with Iterable[ISome[CI]]

A container node (map or sequence) that is both a function from child ids to child nodes and an iterable over its present children.

I

path type of this node

CI

path type of child nodes

Source
Node.scala
Linear Supertypes
Iterable[ISome[CI]], scala.collection.Iterable[ISome[CI]], IterableFactoryDefaults[ISome[CI], scala.collection.Iterable], IterableOps[ISome[CI], scala.collection.Iterable, scala.collection.Iterable[ISome[CI]]], IterableOnceOps[ISome[CI], scala.collection.Iterable, scala.collection.Iterable[ISome[CI]]], IterableOnce[ISome[CI]], (CI) => INode[CI], IValue[I], ISome[I], INode[I], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IContainer
  2. Iterable
  3. Iterable
  4. IterableFactoryDefaults
  5. IterableOps
  6. IterableOnceOps
  7. IterableOnce
  8. Function1
  9. IValue
  10. ISome
  11. INode
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def apply(v1: CI): INode[CI]
    Definition Classes
    Function1
  2. abstract def id: I
    Definition Classes
    INode
  3. abstract def iterator: Iterator[ISome[CI]]
    Definition Classes
    IterableOnce
  4. abstract def location: Location

    Source location of this node.

    Source location of this node.

    Definition Classes
    ISome
  5. abstract def tag: Option[String]

    Optional YAML tag (e.g.

    Optional YAML tag (e.g. !!str). None when the backend does not produce tags.

    Definition Classes
    ISome

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ++[B >: ISome[CI]](suffix: IterableOnce[B]): scala.collection.Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def addString(b: StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  6. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  7. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  8. def andThen[A](g: (INode[CI]) => A): (CI) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  12. final def coll: IContainer.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  13. def collect[B](pf: PartialFunction[ISome[CI], B]): scala.collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  14. def collectFirst[B](pf: PartialFunction[ISome[CI], B]): Option[B]
    Definition Classes
    IterableOnceOps
  15. def compose[A](g: (A) => CI): (A) => INode[CI]
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  16. def concat[B >: ISome[CI]](suffix: IterableOnce[B]): scala.collection.Iterable[B]
    Definition Classes
    IterableOps
  17. def copyToArray[B >: ISome[CI]](dest: Array[B], start: Int, n: Int): Int
    Definition Classes
    IterableOnceOps
  18. def copyToArray[B >: ISome[CI]](dest: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  19. def copyToArray[B >: ISome[CI]](dest: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  20. def corresponds[B](that: IterableOnce[B])(p: (ISome[CI], B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  21. def count(p: (ISome[CI]) => Boolean): Int
    Definition Classes
    IterableOnceOps
  22. def drop(n: Int): scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps → IterableOnceOps
  23. def dropRight(n: Int): scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps
  24. def dropWhile(p: (ISome[CI]) => Boolean): scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps → IterableOnceOps
  25. def empty: scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  26. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  28. def exists(p: (ISome[CI]) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  29. def filter(pred: (ISome[CI]) => Boolean): scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps → IterableOnceOps
  30. def filterNot(pred: (ISome[CI]) => Boolean): scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps → IterableOnceOps
  31. def find(p: (ISome[CI]) => Boolean): Option[ISome[CI]]
    Definition Classes
    IterableOnceOps
  32. def flatMap[B](f: (ISome[CI]) => IterableOnce[B]): scala.collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  33. def flatten[B](implicit asIterable: (ISome[CI]) => IterableOnce[B]): scala.collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  34. def fold[A1 >: ISome[CI]](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  35. def foldLeft[B](z: B)(op: (B, ISome[CI]) => B): B
    Definition Classes
    IterableOnceOps
  36. def foldRight[B](z: B)(op: (ISome[CI], B) => B): B
    Definition Classes
    IterableOnceOps
  37. def forall(p: (ISome[CI]) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  38. def foreach[U](f: (ISome[CI]) => U): Unit
    Definition Classes
    IterableOnceOps
  39. def fromSpecific(coll: IterableOnce[ISome[CI]]): scala.collection.Iterable[ISome[CI]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  40. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  41. def groupBy[K](f: (ISome[CI]) => K): scala.collection.immutable.Map[K, scala.collection.Iterable[ISome[CI]]]
    Definition Classes
    IterableOps
  42. def groupMap[K, B](key: (ISome[CI]) => K)(f: (ISome[CI]) => B): scala.collection.immutable.Map[K, scala.collection.Iterable[B]]
    Definition Classes
    IterableOps
  43. def groupMapReduce[K, B](key: (ISome[CI]) => K)(f: (ISome[CI]) => B)(reduce: (B, B) => B): scala.collection.immutable.Map[K, B]
    Definition Classes
    IterableOps
  44. def grouped(size: Int): Iterator[scala.collection.Iterable[ISome[CI]]]
    Definition Classes
    IterableOps
  45. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  46. def head: ISome[CI]
    Definition Classes
    IterableOps
  47. def headOption: Option[ISome[CI]]
    Definition Classes
    IterableOps
  48. def init: scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps
  49. def inits: Iterator[scala.collection.Iterable[ISome[CI]]]
    Definition Classes
    IterableOps
  50. final def isEmpty: Boolean
    Definition Classes
    IContainer → IterableOnceOps
  51. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  52. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  53. def iterableFactory: IterableFactory[scala.collection.Iterable]
    Definition Classes
    Iterable → IterableOps
  54. final def knownSize: Int
    Definition Classes
    IContainer → Iterable → IterableOnce
  55. def last: ISome[CI]
    Definition Classes
    IterableOps
  56. def lastOption: Option[ISome[CI]]
    Definition Classes
    IterableOps
  57. def lazyZip[B](that: scala.collection.Iterable[B]): LazyZip2[ISome[CI], B, IContainer.this.type]
    Definition Classes
    Iterable
  58. def map[B](f: (ISome[CI]) => B): scala.collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  59. def max[B >: ISome[CI]](implicit ord: Ordering[B]): ISome[CI]
    Definition Classes
    IterableOnceOps
  60. def maxBy[B](f: (ISome[CI]) => B)(implicit ord: Ordering[B]): ISome[CI]
    Definition Classes
    IterableOnceOps
  61. def maxByOption[B](f: (ISome[CI]) => B)(implicit ord: Ordering[B]): Option[ISome[CI]]
    Definition Classes
    IterableOnceOps
  62. def maxOption[B >: ISome[CI]](implicit ord: Ordering[B]): Option[ISome[CI]]
    Definition Classes
    IterableOnceOps
  63. def min[B >: ISome[CI]](implicit ord: Ordering[B]): ISome[CI]
    Definition Classes
    IterableOnceOps
  64. def minBy[B](f: (ISome[CI]) => B)(implicit ord: Ordering[B]): ISome[CI]
    Definition Classes
    IterableOnceOps
  65. def minByOption[B](f: (ISome[CI]) => B)(implicit ord: Ordering[B]): Option[ISome[CI]]
    Definition Classes
    IterableOnceOps
  66. def minOption[B >: ISome[CI]](implicit ord: Ordering[B]): Option[ISome[CI]]
    Definition Classes
    IterableOnceOps
  67. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  68. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  69. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  70. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  71. def newSpecificBuilder: Builder[ISome[CI], scala.collection.Iterable[ISome[CI]]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  72. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  73. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  74. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  75. def partition(p: (ISome[CI]) => Boolean): (scala.collection.Iterable[ISome[CI]], scala.collection.Iterable[ISome[CI]])
    Definition Classes
    IterableOps
  76. def partitionMap[A1, A2](f: (ISome[CI]) => Either[A1, A2]): (scala.collection.Iterable[A1], scala.collection.Iterable[A2])
    Definition Classes
    IterableOps
  77. def product[B >: ISome[CI]](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  78. def reduce[B >: ISome[CI]](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  79. def reduceLeft[B >: ISome[CI]](op: (B, ISome[CI]) => B): B
    Definition Classes
    IterableOnceOps
  80. def reduceLeftOption[B >: ISome[CI]](op: (B, ISome[CI]) => B): Option[B]
    Definition Classes
    IterableOnceOps
  81. def reduceOption[B >: ISome[CI]](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  82. def reduceRight[B >: ISome[CI]](op: (ISome[CI], B) => B): B
    Definition Classes
    IterableOnceOps
  83. def reduceRightOption[B >: ISome[CI]](op: (ISome[CI], B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  84. def reversed: scala.collection.Iterable[ISome[CI]]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  85. def scan[B >: ISome[CI]](z: B)(op: (B, B) => B): scala.collection.Iterable[B]
    Definition Classes
    IterableOps
  86. def scanLeft[B](z: B)(op: (B, ISome[CI]) => B): scala.collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  87. def scanRight[B](z: B)(op: (ISome[CI], B) => B): scala.collection.Iterable[B]
    Definition Classes
    IterableOps
  88. def size: Int
    Definition Classes
    IterableOnceOps
  89. def sizeCompare(that: scala.collection.Iterable[_]): Int
    Definition Classes
    IterableOps
  90. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  91. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  92. def slice(from: Int, until: Int): scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps → IterableOnceOps
  93. def sliding(size: Int, step: Int): Iterator[scala.collection.Iterable[ISome[CI]]]
    Definition Classes
    IterableOps
  94. def sliding(size: Int): Iterator[scala.collection.Iterable[ISome[CI]]]
    Definition Classes
    IterableOps
  95. def span(p: (ISome[CI]) => Boolean): (scala.collection.Iterable[ISome[CI]], scala.collection.Iterable[ISome[CI]])
    Definition Classes
    IterableOps → IterableOnceOps
  96. def splitAt(n: Int): (scala.collection.Iterable[ISome[CI]], scala.collection.Iterable[ISome[CI]])
    Definition Classes
    IterableOps → IterableOnceOps
  97. def stepper[S <: Stepper[_]](implicit shape: StepperShape[ISome[CI], S]): S
    Definition Classes
    IterableOnce
  98. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding()
  99. def sum[B >: ISome[CI]](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  100. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  101. def tail: scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps
  102. def tails: Iterator[scala.collection.Iterable[ISome[CI]]]
    Definition Classes
    IterableOps
  103. def take(n: Int): scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps → IterableOnceOps
  104. def takeRight(n: Int): scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps
  105. def takeWhile(p: (ISome[CI]) => Boolean): scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps → IterableOnceOps
  106. def tapEach[U](f: (ISome[CI]) => U): scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps → IterableOnceOps
  107. def to[C1](factory: Factory[ISome[CI], C1]): C1
    Definition Classes
    IterableOnceOps
  108. def toArray[B >: ISome[CI]](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  109. final def toBuffer[B >: ISome[CI]]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  110. def toIndexedSeq: IndexedSeq[ISome[CI]]
    Definition Classes
    IterableOnceOps
  111. def toList: List[ISome[CI]]
    Definition Classes
    IterableOnceOps
  112. def toMap[K, V](implicit ev: <:<[ISome[CI], (K, V)]): scala.collection.immutable.Map[K, V]
    Definition Classes
    IterableOnceOps
  113. def toSeq: scala.collection.immutable.Seq[ISome[CI]]
    Definition Classes
    IterableOnceOps
  114. def toSet[B >: ISome[CI]]: Set[B]
    Definition Classes
    IterableOnceOps
  115. def toString(): String
    Definition Classes
    Iterable → AnyRef → Any
  116. def toVector: Vector[ISome[CI]]
    Definition Classes
    IterableOnceOps
  117. def transpose[B](implicit asIterable: (ISome[CI]) => scala.collection.Iterable[B]): scala.collection.Iterable[scala.collection.Iterable[B]]
    Definition Classes
    IterableOps
  118. def unzip[A1, A2](implicit asPair: (ISome[CI]) => (A1, A2)): (scala.collection.Iterable[A1], scala.collection.Iterable[A2])
    Definition Classes
    IterableOps
  119. def unzip3[A1, A2, A3](implicit asTriple: (ISome[CI]) => (A1, A2, A3)): (scala.collection.Iterable[A1], scala.collection.Iterable[A2], scala.collection.Iterable[A3])
    Definition Classes
    IterableOps
  120. def view: View[ISome[CI]]
    Definition Classes
    IterableOps
  121. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  122. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  123. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  124. def withFilter(p: (ISome[CI]) => Boolean): WithFilter[ISome[CI], scala.collection.Iterable]
    Definition Classes
    IterableOps
  125. def zip[B](that: IterableOnce[B]): scala.collection.Iterable[(ISome[CI], B)]
    Definition Classes
    IterableOps
  126. def zipAll[A1 >: ISome[CI], B](that: scala.collection.Iterable[B], thisElem: A1, thatElem: B): scala.collection.Iterable[(A1, B)]
    Definition Classes
    IterableOps
  127. def zipWithIndex: scala.collection.Iterable[(ISome[CI], Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: ISome[CI]](that: IterableOnce[B]): scala.collection.Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. final def /:[B](z: B)(op: (B, ISome[CI]) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. final def :\[B](z: B)(op: (ISome[CI], B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  4. def aggregate[B](z: => B)(seqop: (B, ISome[CI]) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) For sequential collections, prefer foldLeft(z)(seqop). For parallel collections, use ParIterableLike#aggregate.

  5. def companion: IterableFactory[scala.collection.Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  6. final def copyToBuffer[B >: ISome[CI]](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  7. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  8. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  9. final def repr: scala.collection.Iterable[ISome[CI]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  10. def seq: IContainer.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  11. final def toIterable: IContainer.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  12. final def toIterator: Iterator[ISome[CI]]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  13. final def toStream: Stream[ISome[CI]]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  14. final def toTraversable: Traversable[ISome[CI]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  15. def view(from: Int, until: Int): View[ISome[CI]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from Iterable[ISome[CI]]

Inherited from scala.collection.Iterable[ISome[CI]]

Inherited from IterableFactoryDefaults[ISome[CI], scala.collection.Iterable]

Inherited from IterableOps[ISome[CI], scala.collection.Iterable, scala.collection.Iterable[ISome[CI]]]

Inherited from IterableOnceOps[ISome[CI], scala.collection.Iterable, scala.collection.Iterable[ISome[CI]]]

Inherited from IterableOnce[ISome[CI]]

Inherited from (CI) => INode[CI]

Inherited from IValue[I]

Inherited from ISome[I]

Inherited from INode[I]

Inherited from AnyRef

Inherited from Any

Ungrouped