Packages

c

akka.io.Tcp

CompoundWrite

final case class CompoundWrite(head: SimpleWriteCommand, tailCommand: WriteCommand) extends WriteCommand with Iterable[SimpleWriteCommand] with Product with Serializable

A write command which aggregates two other write commands. Using this construct you can chain a number of Write and/or WriteFile commands together in a way that allows them to be handled as a single write which gets written out to the network as quickly as possible. If the sub commands contain ack requests they will be honored as soon as the respective write has been written completely.

Source
Tcp.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CompoundWrite
  2. Serializable
  3. Product
  4. Equals
  5. Iterable
  6. Iterable
  7. IterableFactoryDefaults
  8. IterableOps
  9. IterableOnceOps
  10. IterableOnce
  11. WriteCommand
  12. Command
  13. HasFailureMessage
  14. Message
  15. NoSerializationVerificationNeeded
  16. AnyRef
  17. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CompoundWrite(head: SimpleWriteCommand, tailCommand: WriteCommand)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from CompoundWrite toany2stringadd[CompoundWrite] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: SimpleWriteCommand](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. def ++:(writes: Iterable[WriteCommand]): WriteCommand

    Prepends this command with a number of other writes.

    Prepends this command with a number of other writes. The first element of the given Iterable becomes the first sub write of a potentially created CompoundWrite.

    Definition Classes
    WriteCommand
  6. def +:(other: SimpleWriteCommand): CompoundWrite

    Prepends this command with another Write or WriteFile to form a CompoundWrite.

    Prepends this command with another Write or WriteFile to form a CompoundWrite.

    Definition Classes
    WriteCommand
  7. def ->[B](y: B): (CompoundWrite, B)
    Implicit
    This member is added by an implicit conversion from CompoundWrite toArrowAssoc[CompoundWrite] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  10. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  15. final def coll: CompoundWrite.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  16. def collect[B](pf: PartialFunction[SimpleWriteCommand, B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  17. def collectFirst[B](pf: PartialFunction[SimpleWriteCommand, B]): Option[B]
    Definition Classes
    IterableOnceOps
  18. def concat[B >: SimpleWriteCommand](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  19. def copyToArray[B >: SimpleWriteCommand](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  20. def copyToArray[B >: SimpleWriteCommand](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  21. def copyToArray[B >: SimpleWriteCommand](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  22. def corresponds[B](that: IterableOnce[B])(p: (SimpleWriteCommand, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  23. def count(p: (SimpleWriteCommand) => Boolean): Int
    Definition Classes
    IterableOnceOps
  24. def drop(n: Int): Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps → IterableOnceOps
  25. def dropRight(n: Int): Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps
  26. def dropWhile(p: (SimpleWriteCommand) => Boolean): Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps → IterableOnceOps
  27. def empty: Iterable[SimpleWriteCommand]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  28. def ensuring(cond: (CompoundWrite) => Boolean, msg: => Any): CompoundWrite
    Implicit
    This member is added by an implicit conversion from CompoundWrite toEnsuring[CompoundWrite] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: (CompoundWrite) => Boolean): CompoundWrite
    Implicit
    This member is added by an implicit conversion from CompoundWrite toEnsuring[CompoundWrite] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean, msg: => Any): CompoundWrite
    Implicit
    This member is added by an implicit conversion from CompoundWrite toEnsuring[CompoundWrite] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: Boolean): CompoundWrite
    Implicit
    This member is added by an implicit conversion from CompoundWrite toEnsuring[CompoundWrite] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. def exists(p: (SimpleWriteCommand) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  34. def failureMessage: CommandFailed
    Definition Classes
    Command → HasFailureMessage
  35. def filter(pred: (SimpleWriteCommand) => Boolean): Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps → IterableOnceOps
  36. def filterNot(pred: (SimpleWriteCommand) => Boolean): Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps → IterableOnceOps
  37. def find(p: (SimpleWriteCommand) => Boolean): Option[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
  38. def flatMap[B](f: (SimpleWriteCommand) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  39. def flatten[B](implicit asIterable: (SimpleWriteCommand) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  40. def fold[A1 >: SimpleWriteCommand](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  41. def foldLeft[B](z: B)(op: (B, SimpleWriteCommand) => B): B
    Definition Classes
    IterableOnceOps
  42. def foldRight[B](z: B)(op: (SimpleWriteCommand, B) => B): B
    Definition Classes
    IterableOnceOps
  43. def forall(p: (SimpleWriteCommand) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  44. def foreach[U](f: (SimpleWriteCommand) => U): Unit
    Definition Classes
    IterableOnceOps
  45. def fromSpecific(coll: IterableOnce[SimpleWriteCommand]): Iterable[SimpleWriteCommand]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  46. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  47. def groupBy[K](f: (SimpleWriteCommand) => K): Map[K, Iterable[SimpleWriteCommand]]
    Definition Classes
    IterableOps
  48. def groupMap[K, B](key: (SimpleWriteCommand) => K)(f: (SimpleWriteCommand) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  49. def groupMapReduce[K, B](key: (SimpleWriteCommand) => K)(f: (SimpleWriteCommand) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  50. def grouped(size: Int): Iterator[Iterable[SimpleWriteCommand]]
    Definition Classes
    IterableOps
  51. val head: SimpleWriteCommand
    Definition Classes
    CompoundWrite → IterableOps
  52. def headOption: Option[SimpleWriteCommand]
    Definition Classes
    IterableOps
  53. def init: Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps
  54. def inits: Iterator[Iterable[SimpleWriteCommand]]
    Definition Classes
    IterableOps
  55. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  56. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  57. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  58. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → Iterable → IterableOps
  59. def iterator: Iterator[SimpleWriteCommand]
    Definition Classes
    CompoundWrite → IterableOnce
  60. def knownSize: Int
    Definition Classes
    IterableOnce
  61. def last: SimpleWriteCommand
    Definition Classes
    IterableOps
  62. def lastOption: Option[SimpleWriteCommand]
    Definition Classes
    IterableOps
  63. def lazyZip[B](that: Iterable[B]): LazyZip2[SimpleWriteCommand, B, CompoundWrite.this.type]
    Definition Classes
    Iterable
  64. def map[B](f: (SimpleWriteCommand) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  65. def max[B >: SimpleWriteCommand](implicit ord: Ordering[B]): SimpleWriteCommand
    Definition Classes
    IterableOnceOps
  66. def maxBy[B](f: (SimpleWriteCommand) => B)(implicit cmp: Ordering[B]): SimpleWriteCommand
    Definition Classes
    IterableOnceOps
  67. def maxByOption[B](f: (SimpleWriteCommand) => B)(implicit cmp: Ordering[B]): Option[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
  68. def maxOption[B >: SimpleWriteCommand](implicit ord: Ordering[B]): Option[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
  69. def min[B >: SimpleWriteCommand](implicit ord: Ordering[B]): SimpleWriteCommand
    Definition Classes
    IterableOnceOps
  70. def minBy[B](f: (SimpleWriteCommand) => B)(implicit cmp: Ordering[B]): SimpleWriteCommand
    Definition Classes
    IterableOnceOps
  71. def minByOption[B](f: (SimpleWriteCommand) => B)(implicit cmp: Ordering[B]): Option[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
  72. def minOption[B >: SimpleWriteCommand](implicit ord: Ordering[B]): Option[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
  73. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  74. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  75. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  76. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  77. def newSpecificBuilder: Builder[SimpleWriteCommand, Iterable[SimpleWriteCommand]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  78. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  79. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  80. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  81. def partition(p: (SimpleWriteCommand) => Boolean): (Iterable[SimpleWriteCommand], Iterable[SimpleWriteCommand])
    Definition Classes
    IterableOps
  82. def partitionMap[A1, A2](f: (SimpleWriteCommand) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  83. def prepend(writes: Iterable[WriteCommand]): WriteCommand

    Java API: prepends this command with a number of other writes.

    Java API: prepends this command with a number of other writes. The first element of the given Iterable becomes the first sub write of a potentially created CompoundWrite.

    Definition Classes
    WriteCommand
  84. def prepend(that: SimpleWriteCommand): CompoundWrite

    Java API: prepends this command with another Write or WriteFile to form a CompoundWrite.

    Java API: prepends this command with another Write or WriteFile to form a CompoundWrite.

    Definition Classes
    WriteCommand
  85. def product[B >: SimpleWriteCommand](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  86. def productElementNames: Iterator[String]
    Definition Classes
    Product
  87. def reduce[B >: SimpleWriteCommand](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  88. def reduceLeft[B >: SimpleWriteCommand](op: (B, SimpleWriteCommand) => B): B
    Definition Classes
    IterableOnceOps
  89. def reduceLeftOption[B >: SimpleWriteCommand](op: (B, SimpleWriteCommand) => B): Option[B]
    Definition Classes
    IterableOnceOps
  90. def reduceOption[B >: SimpleWriteCommand](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  91. def reduceRight[B >: SimpleWriteCommand](op: (SimpleWriteCommand, B) => B): B
    Definition Classes
    IterableOnceOps
  92. def reduceRightOption[B >: SimpleWriteCommand](op: (SimpleWriteCommand, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  93. def reversed: Iterable[SimpleWriteCommand]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  94. def scan[B >: SimpleWriteCommand](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  95. def scanLeft[B](z: B)(op: (B, SimpleWriteCommand) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  96. def scanRight[B](z: B)(op: (SimpleWriteCommand, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  97. def size: Int
    Definition Classes
    IterableOnceOps
  98. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  99. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  100. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  101. def slice(from: Int, until: Int): Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps → IterableOnceOps
  102. def sliding(size: Int, step: Int): Iterator[Iterable[SimpleWriteCommand]]
    Definition Classes
    IterableOps
  103. def sliding(size: Int): Iterator[Iterable[SimpleWriteCommand]]
    Definition Classes
    IterableOps
  104. def span(p: (SimpleWriteCommand) => Boolean): (Iterable[SimpleWriteCommand], Iterable[SimpleWriteCommand])
    Definition Classes
    IterableOps → IterableOnceOps
  105. def splitAt(n: Int): (Iterable[SimpleWriteCommand], Iterable[SimpleWriteCommand])
    Definition Classes
    IterableOps → IterableOnceOps
  106. def stepper[S <: Stepper[_]](implicit shape: StepperShape[SimpleWriteCommand, S]): S
    Definition Classes
    IterableOnce
  107. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding()
  108. def sum[B >: SimpleWriteCommand](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  109. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  110. def tail: Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps
  111. val tailCommand: WriteCommand
  112. def tails: Iterator[Iterable[SimpleWriteCommand]]
    Definition Classes
    IterableOps
  113. def take(n: Int): Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps → IterableOnceOps
  114. def takeRight(n: Int): Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps
  115. def takeWhile(p: (SimpleWriteCommand) => Boolean): Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps → IterableOnceOps
  116. def tapEach[U](f: (SimpleWriteCommand) => U): Iterable[SimpleWriteCommand]
    Definition Classes
    IterableOps → IterableOnceOps
  117. def to[C1](factory: Factory[SimpleWriteCommand, C1]): C1
    Definition Classes
    IterableOnceOps
  118. def toArray[B >: SimpleWriteCommand](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  119. final def toBuffer[B >: SimpleWriteCommand]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  120. def toIndexedSeq: IndexedSeq[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
  121. def toList: List[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
  122. def toMap[K, V](implicit ev: <:<[SimpleWriteCommand, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  123. def toSeq: Seq[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
  124. def toSet[B >: SimpleWriteCommand]: Set[B]
    Definition Classes
    IterableOnceOps
  125. def toString(): String
    Definition Classes
    Iterable → AnyRef → Any
  126. def toVector: Vector[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
  127. def transpose[B](implicit asIterable: (SimpleWriteCommand) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  128. def unzip[A1, A2](implicit asPair: (SimpleWriteCommand) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  129. def unzip3[A1, A2, A3](implicit asTriple: (SimpleWriteCommand) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  130. def view: View[SimpleWriteCommand]
    Definition Classes
    IterableOps
  131. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  132. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  133. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  134. def withFilter(p: (SimpleWriteCommand) => Boolean): WithFilter[SimpleWriteCommand, [_]Iterable[_]]
    Definition Classes
    IterableOps
  135. def zip[B](that: IterableOnce[B]): Iterable[(SimpleWriteCommand, B)]
    Definition Classes
    IterableOps
  136. def zipAll[A1 >: SimpleWriteCommand, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  137. def zipWithIndex: Iterable[(SimpleWriteCommand, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

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

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

  2. def /:[B](z: B)(op: (B, SimpleWriteCommand) => B): B
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use foldLeft instead of /:

  4. def :\[B](z: B)(op: (SimpleWriteCommand, B) => B): B
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

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

    (Since version 2.13.0) Use foldRight instead of :\

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

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  7. def collectFirst[B](f: PartialFunction[SimpleWriteCommand, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  8. def companion: IterableFactory[[_]Iterable[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  9. def copyToBuffer(dest: Buffer[SimpleWriteCommand]): Unit
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

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

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

  11. def count(f: (SimpleWriteCommand) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  12. def exists(f: (SimpleWriteCommand) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  13. def filter(f: (SimpleWriteCommand) => Boolean): Iterator[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  15. def find(p: (SimpleWriteCommand) => Boolean): Option[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  16. def flatMap[B](f: (SimpleWriteCommand) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  17. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  18. def foldLeft[B](z: B)(op: (B, SimpleWriteCommand) => B): B
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  19. def foldRight[B](z: B)(op: (SimpleWriteCommand, B) => B): B
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  20. def forall(f: (SimpleWriteCommand) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  21. def foreach[U](f: (SimpleWriteCommand) => U): Unit
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  22. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from CompoundWrite toStringFormat[CompoundWrite] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  23. 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)

  24. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  25. def map[B](f: (SimpleWriteCommand) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  26. def max(implicit ord: Ordering[SimpleWriteCommand]): SimpleWriteCommand
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  27. def maxBy[B](f: (SimpleWriteCommand) => B)(implicit cmp: Ordering[B]): SimpleWriteCommand
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  28. def min(implicit ord: Ordering[SimpleWriteCommand]): SimpleWriteCommand
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  29. def minBy[B](f: (SimpleWriteCommand) => B)(implicit cmp: Ordering[B]): SimpleWriteCommand
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  30. def mkString: String
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  31. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  32. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  33. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  34. def product(implicit num: Numeric[SimpleWriteCommand]): SimpleWriteCommand
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  35. def reduce(f: (SimpleWriteCommand, SimpleWriteCommand) => SimpleWriteCommand): SimpleWriteCommand
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  36. def reduceLeft(f: (SimpleWriteCommand, SimpleWriteCommand) => SimpleWriteCommand): SimpleWriteCommand
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  37. def reduceLeftOption(f: (SimpleWriteCommand, SimpleWriteCommand) => SimpleWriteCommand): Option[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  38. def reduceOption(f: (SimpleWriteCommand, SimpleWriteCommand) => SimpleWriteCommand): Option[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  39. def reduceRight(f: (SimpleWriteCommand, SimpleWriteCommand) => SimpleWriteCommand): SimpleWriteCommand
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  40. def reduceRightOption(f: (SimpleWriteCommand, SimpleWriteCommand) => SimpleWriteCommand): Option[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  41. final def repr: Iterable[SimpleWriteCommand]
    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

  42. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  43. def seq: CompoundWrite.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  44. def size: Int
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  45. def sum(implicit num: Numeric[SimpleWriteCommand]): SimpleWriteCommand
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  46. def to[C1](factory: Factory[SimpleWriteCommand, C1]): C1
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  47. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  48. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  49. def toIndexedSeq: IndexedSeq[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  50. final def toIterable: Iterable[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  51. final def toIterable: CompoundWrite.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

  52. def toIterator: Iterator[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  53. final def toIterator: Iterator[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  54. def toList: List[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  55. def toMap[K, V](implicit ev: <:<[SimpleWriteCommand, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  56. def toSeq: Seq[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  57. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  58. def toStream: Stream[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  59. final def toStream: Stream[SimpleWriteCommand]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  60. final def toTraversable: Traversable[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  61. final def toTraversable: Traversable[SimpleWriteCommand]
    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

  62. def toVector: Vector[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

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

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

  64. def withFilter(f: (SimpleWriteCommand) => Boolean): Iterator[SimpleWriteCommand]
    Implicit
    This member is added by an implicit conversion from CompoundWrite toIterableOnceExtensionMethods[SimpleWriteCommand] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compoundWrite: IterableOnceExtensionMethods[SimpleWriteCommand]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

  65. def [B](y: B): (CompoundWrite, B)
    Implicit
    This member is added by an implicit conversion from CompoundWrite toArrowAssoc[CompoundWrite] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from WriteCommand

Inherited from Command

Inherited from HasFailureMessage

Inherited from Message

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromCompoundWrite to IterableOnceExtensionMethods[SimpleWriteCommand]

Inherited by implicit conversion any2stringadd fromCompoundWrite to any2stringadd[CompoundWrite]

Inherited by implicit conversion StringFormat fromCompoundWrite to StringFormat[CompoundWrite]

Inherited by implicit conversion Ensuring fromCompoundWrite to Ensuring[CompoundWrite]

Inherited by implicit conversion ArrowAssoc fromCompoundWrite to ArrowAssoc[CompoundWrite]

Ungrouped