scalax.io.nio

ByteBuffer

class ByteBuffer extends IndexedSeq[Byte]

Allows use of a java.nio.ByteBuffer as an IndexedSeq. But remember that the underlying buffer is mutable so this object can be mutated by the underlying object

Allows use of a java.nio.ByteBuffer as an IndexedSeq. But remember that the underlying buffer is mutable so this object can be mutated by the underlying object

linear super types: IndexedSeq[Byte], IndexedSeqLike[Byte, IndexedSeq[Byte]], Seq[Byte], SeqLike[Byte, IndexedSeq[Byte]], Iterable[Byte], IterableLike[Byte, IndexedSeq[Byte]], Equals, Traversable[Byte], GenericTraversableTemplate[Byte, IndexedSeq], TraversableLike[Byte, IndexedSeq[Byte]], Parallelizable[Byte, ParSeq[Byte]], TraversableOnce[Byte], FilterMonadic[Byte, IndexedSeq[Byte]], HasNewBuilder[Byte, IndexedSeq[Byte]], PartialFunction[Int, Byte], (Int) ⇒ Byte, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. ByteBuffer
  2. IndexedSeq
  3. IndexedSeqLike
  4. Seq
  5. SeqLike
  6. Iterable
  7. IterableLike
  8. Equals
  9. Traversable
  10. GenericTraversableTemplate
  11. TraversableLike
  12. Parallelizable
  13. TraversableOnce
  14. FilterMonadic
  15. HasNewBuilder
  16. PartialFunction
  17. Function1
  18. AnyRef
  19. Any
Visibility
  1. Public
  2. All
Impl.
  1. Concrete
  2. Abstract

Instance constructors

  1. new ByteBuffer ( buf : ByteBuffer )

Type Members

  1. type Self = IndexedSeq[Byte]

    attributes: protected
    definition classes: TraversableLike

Value Members

  1. def != ( arg0 : AnyRef ) : Boolean

    attributes: final
    definition classes: AnyRef
  2. def != ( arg0 : Any ) : Boolean

    o != arg0 is the same as !(o == (arg0)).

    o != arg0 is the same as !(o == (arg0)).

    arg0

    the object to compare against this object for dis-equality.

    returns

    false if the receiver object is equivalent to the argument; true otherwise.

    attributes: final
    definition classes: Any
  3. def ## () : Int

    attributes: final
    definition classes: AnyRef → Any
  4. def $asInstanceOf [T0] () : T0

    attributes: final
    definition classes: AnyRef
  5. def $isInstanceOf [T0] () : Boolean

    attributes: final
    definition classes: AnyRef
  6. def ++ [B >: Byte, That] ( that : TraversableOnce[B] )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: TraversableLike
  7. def ++: [B >: Byte, That] ( that : Traversable[B] )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: TraversableLike
  8. def ++: [B >: Byte, That] ( that : TraversableOnce[B] )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: TraversableLike
  9. def +: [B >: Byte, That] ( elem : B )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: SeqLike
  10. def /: [B] ( z : B )( op : (B, Byte) ⇒ B ) : B

    definition classes: TraversableOnce
  11. def :+ [B >: Byte, That] ( elem : B )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: SeqLike
  12. def :\ [B] ( z : B )( op : (Byte, B) ⇒ B ) : B

    definition classes: TraversableOnce
  13. def == ( arg0 : AnyRef ) : Boolean

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: AnyRef
  14. def == ( arg0 : Any ) : Boolean

    o == arg0 is the same as o.equals(arg0).

    o == arg0 is the same as o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: Any
  15. def addString ( b : StringBuilder ) : StringBuilder

    definition classes: TraversableOnce
  16. def addString ( b : StringBuilder , sep : String ) : StringBuilder

    definition classes: TraversableOnce
  17. def addString ( b : StringBuilder , start : String , sep : String , end : String ) : StringBuilder

    definition classes: TraversableOnce
  18. def andThen [C] ( k : (Byte) ⇒ C ) : PartialFunction[Int, C]

    definition classes: PartialFunction → Function1
  19. def apply ( idx : Int ) : Byte

    definition classes: ByteBuffer → SeqLike → Function1
  20. def asInstanceOf [T0] : T0

    This method is used to cast the receiver object to be of type T0.

    This method is used to cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    the receiver object.

    attributes: final
    definition classes: Any
  21. def canEqual ( that : Any ) : Boolean

    definition classes: IterableLike → Equals
  22. def clone () : AnyRef

    This method creates and returns a copy of the receiver object.

    This method creates and returns a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    attributes: protected[lang]
    definition classes: AnyRef
    annotations: @throws()
  23. def collect [B, That] ( pf : PartialFunction[Byte, B] )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: TraversableLike
  24. def collectFirst [B] ( pf : PartialFunction[Byte, B] ) : Option[B]

    definition classes: TraversableOnce
  25. def combinations ( n : Int ) : Iterator[IndexedSeq[Byte]]

    definition classes: SeqLike
  26. def companion : GenericCompanion[IndexedSeq]

    definition classes: IndexedSeq → Seq → Iterable → Traversable → GenericTraversableTemplate
  27. def compose [A] ( g : (A) ⇒ Int ) : (A) ⇒ Byte

    definition classes: Function1
  28. def contains ( elem : Any ) : Boolean

    definition classes: SeqLike
  29. def containsSlice [B] ( that : Seq[B] ) : Boolean

    definition classes: SeqLike
  30. def copyToArray [B >: Byte] ( xs : Array[B] , start : Int , len : Int ) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce
  31. def copyToArray [B >: Byte] ( xs : Array[B] ) : Unit

    definition classes: TraversableOnce
  32. def copyToArray [B >: Byte] ( xs : Array[B] , start : Int ) : Unit

    definition classes: TraversableOnce
  33. def copyToBuffer [B >: Byte] ( dest : Buffer[B] ) : Unit

    definition classes: TraversableOnce
  34. def corresponds [B] ( that : Seq[B] )( p : (Byte, B) ⇒ Boolean ) : Boolean

    definition classes: SeqLike
  35. def count ( p : (Byte) ⇒ Boolean ) : Int

    definition classes: TraversableOnce
  36. def diff [B >: Byte] ( that : Seq[B] ) : IndexedSeq[Byte]

    definition classes: SeqLike
  37. def distinct : IndexedSeq[Byte]

    definition classes: SeqLike
  38. def drop ( n : Int ) : IndexedSeq[Byte]

    definition classes: TraversableLike
  39. def dropRight ( n : Int ) : IndexedSeq[Byte]

    definition classes: IterableLike
  40. def dropWhile ( p : (Byte) ⇒ Boolean ) : IndexedSeq[Byte]

    definition classes: TraversableLike
  41. def elements : Iterator[Byte]

    definition classes: IterableLike
    annotations: @deprecated()
      deprecated:
    1. use iterator' instead

  42. def endsWith [B] ( that : Seq[B] ) : Boolean

    definition classes: SeqLike
  43. def eq ( arg0 : AnyRef ) : Boolean

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation] on non-null instances of AnyRef: * It is reflexive: for any non-null instance x of type AnyRef, x.eq(x) returns true. * It is symmetric: for any non-null instances x and y of type AnyRef, x.eq(y) returns true if and only if y.eq(x) returns true. * It is transitive: for any non-null instances x, y, and z of type AnyRef if x.eq(y) returns true and y.eq(z) returns true, then x.eq(z) returns true.

    Additionally, the eq method has three other properties. * It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false. * For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false. * null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    arg0

    the object to compare against this object for reference equality.

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    attributes: final
    definition classes: AnyRef
  44. def equals ( that : Any ) : Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation]: * It is reflexive: for any instance x of type Any, x.equals(x) should return true. * It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true. * It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same scala.Int (o1.hashCode.equals(o2.hashCode)).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: SeqLike → Equals → AnyRef → Any
  45. def equalsWith [B] ( that : Seq[B] )( f : (Byte, B) ⇒ Boolean ) : Boolean

    definition classes: SeqLike
    annotations: @deprecated()
      deprecated:
    1. use corresponds instead

  46. def exists ( p : (Byte) ⇒ Boolean ) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  47. def filter ( p : (Byte) ⇒ Boolean ) : IndexedSeq[Byte]

    definition classes: TraversableLike
  48. def filterNot ( p : (Byte) ⇒ Boolean ) : IndexedSeq[Byte]

    definition classes: TraversableLike
  49. def finalize () : Unit

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    The details of when and if the finalize method are invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    attributes: protected[lang]
    definition classes: AnyRef
    annotations: @throws()
  50. def find ( p : (Byte) ⇒ Boolean ) : Option[Byte]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  51. def findIndexOf ( p : (Byte) ⇒ Boolean ) : Int

    definition classes: SeqLike
    annotations: @deprecated()
      deprecated:
    1. Use indexWhere(p) instead.

  52. def findLastIndexOf ( p : (Byte) ⇒ Boolean ) : Int

    definition classes: SeqLike
    annotations: @deprecated()
      deprecated:
    1. use lastIndexWhere instead

  53. def first : Byte

    definition classes: IterableLike
    annotations: @deprecated()
      deprecated:
    1. use head' instead

  54. def firstOption : Option[Byte]

    definition classes: IterableLike
    annotations: @deprecated()
      deprecated:
    1. use headOption' instead

  55. def flatMap [B, That] ( f : (Byte) ⇒ TraversableOnce[B] )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: TraversableLike → FilterMonadic
  56. def flatten [B] (implicit asTraversable : (Byte) ⇒ TraversableOnce[B] ) : IndexedSeq[B]

    definition classes: GenericTraversableTemplate
  57. def foldLeft [B] ( z : B )( op : (B, Byte) ⇒ B ) : B

    definition classes: TraversableOnce
  58. def foldRight [B] ( z : B )( op : (Byte, B) ⇒ B ) : B

    definition classes: IterableLike → TraversableOnce
  59. def forall ( p : (Byte) ⇒ Boolean ) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  60. def foreach [U] ( f : (Byte) ⇒ U ) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce → FilterMonadic
  61. def genericBuilder [B] : Builder[B, IndexedSeq[B]]

    definition classes: GenericTraversableTemplate
  62. def getClass () : java.lang.Class[_]

    Returns a representation that corresponds to the dynamic class of the receiver object.

    Returns a representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    attributes: final
    definition classes: AnyRef
  63. def groupBy [K] ( f : (Byte) ⇒ K ) : Map[K, IndexedSeq[Byte]]

    definition classes: TraversableLike
  64. def grouped ( size : Int ) : Iterator[IndexedSeq[Byte]]

    definition classes: IterableLike
  65. def hasDefiniteSize : Boolean

    definition classes: TraversableLike → TraversableOnce
  66. def hashCode () : Int

    Returns a hash code value for the object.

    Returns a hash code value for the object.

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    returns

    the hash code value for the object.

    definition classes: SeqLike → AnyRef → Any
  67. def head : Byte

    definition classes: IterableLike → TraversableLike
  68. def headOption : Option[Byte]

    definition classes: TraversableLike
  69. def indexOf [B >: Byte] ( elem : B , from : Int ) : Int

    definition classes: SeqLike
  70. def indexOf [B >: Byte] ( elem : B ) : Int

    definition classes: SeqLike
  71. def indexOfSlice [B >: Byte] ( that : Seq[B] , from : Int ) : Int

    definition classes: SeqLike
  72. def indexOfSlice [B >: Byte] ( that : Seq[B] ) : Int

    definition classes: SeqLike
  73. def indexWhere ( p : (Byte) ⇒ Boolean , from : Int ) : Int

    definition classes: SeqLike
  74. def indexWhere ( p : (Byte) ⇒ Boolean ) : Int

    definition classes: SeqLike
  75. def indices : Range

    definition classes: SeqLike
  76. def init : IndexedSeq[Byte]

    definition classes: TraversableLike
  77. def inits : Iterator[IndexedSeq[Byte]]

    definition classes: TraversableLike
  78. def intersect [B >: Byte] ( that : Seq[B] ) : IndexedSeq[Byte]

    definition classes: SeqLike
  79. def isDefinedAt ( idx : Int ) : Boolean

    definition classes: SeqLike
  80. def isEmpty : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  81. def isInstanceOf [T0] : Boolean

    This method is used to test whether the dynamic type of the receiver object is T0.

    This method is used to test whether the dynamic type of the receiver object is T0.

    Note that the test result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    attributes: final
    definition classes: Any
  82. def isTraversableAgain : Boolean

    attributes: final
    definition classes: TraversableLike → TraversableOnce
  83. def iterator : Iterator[Byte]

    definition classes: IndexedSeqLike → IterableLike
  84. def last : Byte

    definition classes: TraversableLike
  85. def lastIndexOf [B >: Byte] ( elem : B , end : Int ) : Int

    definition classes: SeqLike
  86. def lastIndexOf [B >: Byte] ( elem : B ) : Int

    definition classes: SeqLike
  87. def lastIndexOfSlice [B >: Byte] ( that : Seq[B] , end : Int ) : Int

    definition classes: SeqLike
  88. def lastIndexOfSlice [B >: Byte] ( that : Seq[B] ) : Int

    definition classes: SeqLike
  89. def lastIndexWhere ( p : (Byte) ⇒ Boolean , end : Int ) : Int

    definition classes: SeqLike
  90. def lastIndexWhere ( p : (Byte) ⇒ Boolean ) : Int

    definition classes: SeqLike
  91. def lastOption : Option[Byte]

    definition classes: TraversableLike
  92. def length : Int

    definition classes: ByteBuffer → SeqLike
  93. def lengthCompare ( len : Int ) : Int

    definition classes: SeqLike
  94. def lift : (Int) ⇒ Option[Byte]

    definition classes: PartialFunction
  95. def map [B, That] ( f : (Byte) ⇒ B )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: TraversableLike → FilterMonadic
  96. def max [B >: Byte] (implicit cmp : Ordering[B] ) : Byte

    definition classes: TraversableOnce
  97. def maxBy [B] ( f : (Byte) ⇒ B )(implicit cmp : Ordering[B] ) : Byte

    definition classes: TraversableOnce
  98. def min [B >: Byte] (implicit cmp : Ordering[B] ) : Byte

    definition classes: TraversableOnce
  99. def minBy [B] ( f : (Byte) ⇒ B )(implicit cmp : Ordering[B] ) : Byte

    definition classes: TraversableOnce
  100. def mkString : String

    definition classes: TraversableOnce
  101. def mkString ( sep : String ) : String

    definition classes: TraversableOnce
  102. def mkString ( start : String , sep : String , end : String ) : String

    definition classes: TraversableOnce
  103. def ne ( arg0 : AnyRef ) : Boolean

    o.ne(arg0) is the same as !(o.eq(arg0)).

    o.ne(arg0) is the same as !(o.eq(arg0)).

    arg0

    the object to compare against this object for reference dis-equality.

    returns

    false if the argument is not a reference to the receiver object; true otherwise.

    attributes: final
    definition classes: AnyRef
  104. def newBuilder : Builder[Byte, IndexedSeq[Byte]]

    attributes: protected[this]
    definition classes: GenericTraversableTemplate → HasNewBuilder
  105. def nonEmpty : Boolean

    definition classes: TraversableOnce
  106. def notify () : Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  107. def notifyAll () : Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  108. def orElse [A1 <: Int, B1 >: Byte] ( that : PartialFunction[A1, B1] ) : PartialFunction[A1, B1]

    definition classes: PartialFunction
  109. def padTo [B >: Byte, That] ( len : Int , elem : B )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: SeqLike
  110. def par : ParSeq[Byte]

    definition classes: Parallelizable → Parallelizable
  111. def parCombiner : Combiner[Byte, ParSeq[Byte]]

    attributes: protected[this]
    definition classes: SeqLike → TraversableLike → Parallelizable
  112. def partition ( p : (Byte) ⇒ Boolean ) : (IndexedSeq[Byte], IndexedSeq[Byte])

    definition classes: TraversableLike
  113. def patch [B >: Byte, That] ( from : Int , patch : Seq[B] , replaced : Int )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: SeqLike
  114. def permutations : Iterator[IndexedSeq[Byte]]

    definition classes: SeqLike
  115. def prefixLength ( p : (Byte) ⇒ Boolean ) : Int

    definition classes: SeqLike
  116. def product [B >: Byte] (implicit num : Numeric[B] ) : B

    definition classes: TraversableOnce
  117. def projection : SeqView[Byte, IndexedSeq[Byte]]

    definition classes: SeqLike → IterableLike
    annotations: @deprecated()
      deprecated:
    1. use view' instead

  118. def reduceLeft [B >: Byte] ( op : (B, Byte) ⇒ B ) : B

    definition classes: TraversableOnce
  119. def reduceLeftOption [B >: Byte] ( op : (B, Byte) ⇒ B ) : Option[B]

    definition classes: TraversableOnce
  120. def reduceRight [B >: Byte] ( op : (Byte, B) ⇒ B ) : B

    definition classes: IterableLike → TraversableOnce
  121. def reduceRightOption [B >: Byte] ( op : (Byte, B) ⇒ B ) : Option[B]

    definition classes: TraversableOnce
  122. def repr : IndexedSeq[Byte]

    definition classes: TraversableLike
  123. def reverse : IndexedSeq[Byte]

    definition classes: SeqLike
  124. def reverseIterator : Iterator[Byte]

    definition classes: SeqLike
  125. def reverseMap [B, That] ( f : (Byte) ⇒ B )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: SeqLike
  126. def reversed : List[Byte]

    attributes: protected[this]
    definition classes: TraversableOnce
  127. def reversedElements : Iterator[Byte]

    definition classes: SeqLike
    annotations: @deprecated()
      deprecated:
    1. use reverseIterator' instead

  128. def sameElements [B >: Byte] ( that : Iterable[B] ) : Boolean

    definition classes: IterableLike
  129. def scanLeft [B, That] ( z : B )( op : (B, Byte) ⇒ B )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: TraversableLike
  130. def scanRight [B, That] ( z : B )( op : (Byte, B) ⇒ B )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: TraversableLike
    annotations: @migration()
  131. def segmentLength ( p : (Byte) ⇒ Boolean , from : Int ) : Int

    definition classes: SeqLike
  132. def seq : Seq[Byte]

    definition classes: Seq → TraversableOnce
  133. def size : Int

    definition classes: SeqLike → TraversableOnce
  134. def slice ( from : Int , until : Int ) : IndexedSeq[Byte]

    definition classes: IterableLike → TraversableLike
  135. def sliding [B >: Byte] ( size : Int , step : Int ) : Iterator[IndexedSeq[Byte]]

    definition classes: IterableLike
  136. def sliding [B >: Byte] ( size : Int ) : Iterator[IndexedSeq[Byte]]

    definition classes: IterableLike
  137. def sortBy [B] ( f : (Byte) ⇒ B )(implicit ord : Ordering[B] ) : IndexedSeq[Byte]

    definition classes: SeqLike
  138. def sortWith ( lt : (Byte, Byte) ⇒ Boolean ) : IndexedSeq[Byte]

    definition classes: SeqLike
  139. def sorted [B >: Byte] (implicit ord : Ordering[B] ) : IndexedSeq[Byte]

    definition classes: SeqLike
  140. def span ( p : (Byte) ⇒ Boolean ) : (IndexedSeq[Byte], IndexedSeq[Byte])

    definition classes: TraversableLike
  141. def splitAt ( n : Int ) : (IndexedSeq[Byte], IndexedSeq[Byte])

    definition classes: TraversableLike
  142. def startsWith [B] ( that : Seq[B] ) : Boolean

    definition classes: SeqLike
  143. def startsWith [B] ( that : Seq[B] , offset : Int ) : Boolean

    definition classes: SeqLike
  144. def stringPrefix : String

    definition classes: TraversableLike
  145. def sum [B >: Byte] (implicit num : Numeric[B] ) : B

    definition classes: TraversableOnce
  146. def synchronized [T0] ( arg0 : ⇒ T0 ) : T0

    attributes: final
    definition classes: AnyRef
  147. def tail : IndexedSeq[Byte]

    definition classes: TraversableLike
  148. def tails : Iterator[IndexedSeq[Byte]]

    definition classes: TraversableLike
  149. def take ( n : Int ) : IndexedSeq[Byte]

    definition classes: TraversableLike
  150. def takeRight ( n : Int ) : IndexedSeq[Byte]

    definition classes: IterableLike
  151. def takeWhile ( p : (Byte) ⇒ Boolean ) : IndexedSeq[Byte]

    definition classes: IterableLike → TraversableLike
  152. def thisCollection : IndexedSeq[Byte]

    attributes: protected[this]
    definition classes: IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  153. def toArray [B >: Byte] (implicit arg0 : ClassManifest[B] ) : Array[B]

    definition classes: TraversableOnce
  154. def toBuffer [A1 >: Byte] : Buffer[A1]

    definition classes: IndexedSeqLike → TraversableOnce
  155. def toCollection ( repr : IndexedSeq[Byte] ) : IndexedSeq[Byte]

    attributes: protected[this]
    definition classes: IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  156. def toIndexedSeq [B >: Byte] : IndexedSeq[B]

    definition classes: TraversableOnce
  157. def toIterable : Iterable[Byte]

    definition classes: IterableLike → TraversableOnce
  158. def toIterator : Iterator[Byte]

    definition classes: TraversableLike → TraversableOnce
  159. def toList : List[Byte]

    definition classes: TraversableOnce
  160. def toMap [T, U] (implicit ev : <:<[Byte, (T, U)] ) : Map[T, U]

    definition classes: TraversableOnce
  161. def toSeq : Seq[Byte]

    definition classes: SeqLike → TraversableOnce
  162. def toSet [B >: Byte] : Set[B]

    definition classes: TraversableOnce
  163. def toStream : Stream[Byte]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  164. def toString () : String

    Returns a string representation of the object.

    Returns a string representation of the object.

    The default representation is platform dependent.

    returns

    a string representation of the object.

    definition classes: SeqLike → TraversableLike → AnyRef → Any
  165. def toTraversable : Traversable[Byte]

    definition classes: TraversableLike → TraversableOnce
  166. def transpose [B] (implicit asTraversable : (Byte) ⇒ TraversableOnce[B] ) : IndexedSeq[IndexedSeq[B]]

    definition classes: GenericTraversableTemplate
    annotations: @migration()
  167. def union [B >: Byte, That] ( that : Seq[B] )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: SeqLike
  168. def unzip [A1, A2] (implicit asPair : (Byte) ⇒ (A1, A2) ) : (IndexedSeq[A1], IndexedSeq[A2])

    definition classes: GenericTraversableTemplate
  169. def unzip3 [A1, A2, A3] (implicit asTriple : (Byte) ⇒ (A1, A2, A3) ) : (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])

    definition classes: GenericTraversableTemplate
  170. def updated [B >: Byte, That] ( index : Int , elem : B )(implicit bf : CanBuildFrom[IndexedSeq[Byte], B, That] ) : That

    definition classes: SeqLike
  171. def view ( from : Int , until : Int ) : SeqView[Byte, IndexedSeq[Byte]]

    definition classes: SeqLike → IterableLike → TraversableLike
  172. def view : SeqView[Byte, IndexedSeq[Byte]]

    definition classes: SeqLike → IterableLike → TraversableLike
  173. def wait () : Unit

    attributes: final
    definition classes: AnyRef
    annotations: @throws()
  174. def wait ( arg0 : Long , arg1 : Int ) : Unit

    attributes: final
    definition classes: AnyRef
    annotations: @throws()
  175. def wait ( arg0 : Long ) : Unit

    attributes: final
    definition classes: AnyRef
    annotations: @throws()
  176. def withFilter ( p : (Byte) ⇒ Boolean ) : FilterMonadic[Byte, IndexedSeq[Byte]]

    definition classes: TraversableLike → FilterMonadic
  177. def zip [A1 >: Byte, B, That] ( that : Iterable[B] )(implicit bf : CanBuildFrom[IndexedSeq[Byte], (A1, B), That] ) : That

    definition classes: IterableLike
  178. def zipAll [B, A1 >: Byte, That] ( that : Iterable[B] , thisElem : A1 , thatElem : B )(implicit bf : CanBuildFrom[IndexedSeq[Byte], (A1, B), That] ) : That

    definition classes: IterableLike
  179. def zipWithIndex [A1 >: Byte, That] (implicit bf : CanBuildFrom[IndexedSeq[Byte], (A1, Int), That] ) : That

    definition classes: IterableLike

Inherited from IndexedSeq[Byte]

Inherited from IndexedSeqLike[Byte, IndexedSeq[Byte]]

Inherited from Seq[Byte]

Inherited from SeqLike[Byte, IndexedSeq[Byte]]

Inherited from Iterable[Byte]

Inherited from IterableLike[Byte, IndexedSeq[Byte]]

Inherited from Equals

Inherited from Traversable[Byte]

Inherited from GenericTraversableTemplate[Byte, IndexedSeq]

Inherited from TraversableLike[Byte, IndexedSeq[Byte]]

Inherited from Parallelizable[Byte, ParSeq[Byte]]

Inherited from TraversableOnce[Byte]

Inherited from FilterMonadic[Byte, IndexedSeq[Byte]]

Inherited from HasNewBuilder[Byte, IndexedSeq[Byte]]

Inherited from PartialFunction[Int, Byte]

Inherited from (Int) ⇒ Byte

Inherited from AnyRef

Inherited from Any