Packages

  • package root

    This is documentation for Mothra, a collection of Scala and Spark library functions for working with Internet-related data.

    This is documentation for Mothra, a collection of Scala and Spark library functions for working with Internet-related data. Some modules contain APIs of general use to Scala programmers. Some modules make those tools more useful on Spark data-processing systems.

    Please see the documentation for the individual packages for more details on their use.

    Scala Packages

    These packages are useful in Scala code without involving Spark:

    org.cert.netsa.data

    This package, which is collected as the netsa-data library, provides types for working with various kinds of information:

    org.cert.netsa.io.ipfix

    The netsa-io-ipfix library provides tools for reading and writing IETF IPFIX data from various connections and files.

    org.cert.netsa.io.silk

    To read and write CERT NetSA SiLK file formats and configuration files, use the netsa-io-silk library.

    org.cert.netsa.util

    The "junk drawer" of netsa-util so far provides only two features: First, a method for equipping Scala scala.collection.Iterators with exception handling. And second, a way to query the versions of NetSA libraries present in a JVM at runtime.

    Spark Packages

    These packages require the use of Apache Spark:

    org.cert.netsa.mothra.datasources

    Spark datasources for CERT file types. This package contains utility features which add methods to Apache Spark DataFrameReader objects, allowing IPFIX and SiLK flows to be opened using simple spark.read... calls.

    The mothra-datasources library contains both IPFIX and SiLK functionality, while mothra-datasources-ipfix and mothra-datasources-silk contain only what's needed for the named datasource.

    org.cert.netsa.mothra.analysis

    A grab-bag of analysis helper functions and example analyses.

    org.cert.netsa.mothra.functions

    This single Scala object provides Spark SQL functions for working with network data. It is the entirety of the mothra-functions library.

    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package cert
    Definition Classes
    org
  • package netsa
    Definition Classes
    cert
  • package io
    Definition Classes
    netsa
  • package ipfix

    The ipfix package provides classes and objects for reading and writing IPFIX data.

    The ipfix package provides classes and objects for reading and writing IPFIX data.

    Class / Object Overview

    (For a quick overview of the IPFIX format, see the end of this description.)

    The Message trait describes the attributes of an IPFIX message, and the CollectedMessage class and object are implementations of that trait when reading data. (Record export does not create specific Message instance.)

    The IpfixSet abstract class and object hold the attributes of a Set. The TemplateSet class may represent a Template Set or an Options Template Set.

    The Template class and object are used to represent a Template Record or an Options Template Record.

    The IEFieldSpecifier class and object represent a Field Specifier within an existing Template. To search for a field within a Template, the user of the ipfix package creates a FieldSpec (the companion object) and attempts to find it within a Template.

    The Field Specifier uses the numeric Identifier to identify an Information Element, and an Element is represented by the InfoElement class and object. The InfoModel class and object represent the Information Model.

    To describe the attributes of an InfoElement, several support classes are defined: DataTypes is an enumeration that describes the type of data that the element contains, and DataType is a class that extracts a Field Value with that DataType. IESemantics describes the data semantics of an Information Element (e.g., a counter, an identifier, a set of flags), and IEUnits describes its units.

    The Data Set is represented by the RecordSet class and object.

    A Data Record is represented by the Record abstract class. This class has three subclasses:

    1. The CollectedRecord class and object are its implementation when reading data. Its members are always referenced by numeric position.
    2. The ArrayRecord (I do not like this name) and object may be used to build a Record from Scala objects; its fields are also referenced by numeric position.
    3. ExportRecord is an abstract class that also supports building a Record from Scala objects. The user extends the class and uses the IPFIXExtract annotation to mark the members of the subclass that are to be used when writing the Record.

    A user-defined class that extends Fillable trait may use the Record's fill() method to copy fields from a Record to the user's class. It also uses the IPFIXExtract annotation.

    A Structured Data Field Value in a Data Record is represented by the ListElement abstract class. That abstract class has three abstract subclasses, and each of those has two concrete subclasses (one for reading and one for writing):

    1. The BasicList abstract class (object) has subclasses CollectedBasicList and ExportBasicList.
    2. The SubTemplateList abstract class (object) has subclasses CollectedSubTemplateList and ExportSubTemplateList.
    3. The SubTemplateMultiList abstract class (object) has subclasses CollectedSubTemplateMultiList and ExportSubTemplateMultiList.

    Reading data

    When reading data, a Record instance is returned by a RecordReader. The RecordReader uses a class that extends the MessageReader trait. The ipfix package includes two: ByteBufferMessageReader and StreamMessageReader.

    A Session value represent an IPFIX session, which is part of a SessionGroup.

    Writing data

    For writing data, an instance of an ExportStream must be created using a Session and the destination FileChannel. The user adds Records or Templates to the ExportStream and they are written to the FileChannel.

    Overview of IPFIX

    An IPFIX stream is composed of Messages. Each Message has a 16-byte Message Header followed by one or more Sets. There are three types of Sets: A Data Set, a Template Set, and an Options Template Set.

    Each Set has a 4-byte set header followed by one or more Records. A Data Set contains Data Records and a Template Set contains Template Records.

    A Template Record describes the shape of the data that appears in a Data Record. A Template Record contains a 4-byte header followed by zero or more Field Specifiers. Each Field Specifier is either a 4-byte or an 8-byte value that describes a field in the Data Record.

    A Field Specifier has two parts. The first is the numeric Information Element Identifier that is defined in an Information Model. The second is the number of octets the field occupies in the Data Record.

    A Data Set contains one or more Data Records of the same type, where the type is determined by the Template Record that the Data Set Header refers to. Each Data Record contains one or more Field Values, where the order and length of the Field Values is given by the Template.

    A Field Value in a Data Record may be a Structured Data. There are three types of Structured Data:

    1. A Basic List contains one or more instances of a Single Information Element.
    2. A SubTemplateList references a single Template ID, and it contains one or more Records that match that Template.
    3. The SubTemplateMultiList contains a series of Template IDs and Records that match that Template ID.

    An IPFIX stream exists in a Transport Session, where a Transport Session is part of a Session Group. All Sessions in a Session Group use the same Transport Protocol, and only differ in the numeric Observation Domain that is part of the Message Header.

    Definition Classes
    io
  • package util
    Definition Classes
    ipfix
  • BufferIterator
  • ListView

final class ListView extends AbstractSeq[Byte]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ListView
  2. AbstractSeq
  3. Seq
  4. Equals
  5. SeqOps
  6. PartialFunction
  7. Function1
  8. AbstractIterable
  9. Iterable
  10. IterableFactoryDefaults
  11. IterableOps
  12. IterableOnceOps
  13. IterableOnce
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ListView(buffer: ByteBuffer)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ++[B >: Byte](suffix: IterableOnce[B]): Seq[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  4. final def ++:[B >: Byte](prefix: IterableOnce[B]): Seq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  5. final def +:[B >: Byte](elem: B): Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  6. final def :+[B >: Byte](elem: B): Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  7. final def :++[B >: Byte](suffix: IterableOnce[B]): Seq[B]
    Definition Classes
    SeqOps
    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. def andThen[C](k: PartialFunction[Byte, C]): PartialFunction[Int, C]
    Definition Classes
    PartialFunction
  13. def andThen[C](k: (Byte) => C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  14. def appended[B >: Byte](elem: B): Seq[B]
    Definition Classes
    SeqOps
  15. def appendedAll[B >: Byte](suffix: IterableOnce[B]): Seq[B]
    Definition Classes
    SeqOps
  16. def apply(idx: Int): Byte
    Definition Classes
    ListView → SeqOps → Function1
  17. def applyOrElse[A1 <: Int, B1 >: Byte](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. def canEqual(that: Any): Boolean
    Definition Classes
    Seq → Equals
  20. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  21. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  22. final def coll: ListView.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  23. def collect[B](pf: PartialFunction[Byte, B]): Seq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  24. def collectFirst[B](pf: PartialFunction[Byte, B]): Option[B]
    Definition Classes
    IterableOnceOps
  25. def combinations(n: Int): Iterator[Seq[Byte]]
    Definition Classes
    SeqOps
  26. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, Byte]
    Definition Classes
    PartialFunction
  27. def compose[A](g: (A) => Int): (A) => Byte
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  28. final def concat[B >: Byte](suffix: IterableOnce[B]): Seq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  29. def contains[A1 >: Byte](elem: A1): Boolean
    Definition Classes
    SeqOps
  30. def containsSlice[B >: Byte](that: Seq[B]): Boolean
    Definition Classes
    SeqOps
  31. def copyToArray[B >: Byte](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  32. def copyToArray[B >: Byte](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  33. def copyToArray[B >: Byte](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  34. def corresponds[B](that: Seq[B])(p: (Byte, B) => Boolean): Boolean
    Definition Classes
    SeqOps
  35. def corresponds[B](that: IterableOnce[B])(p: (Byte, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  36. def count(p: (Byte) => Boolean): Int
    Definition Classes
    IterableOnceOps
  37. def diff[B >: Byte](that: Seq[B]): Seq[Byte]
    Definition Classes
    SeqOps
  38. def distinct: Seq[Byte]
    Definition Classes
    SeqOps
  39. def distinctBy[B](f: (Byte) => B): Seq[Byte]
    Definition Classes
    SeqOps
  40. def drop(n: Int): Seq[Byte]
    Definition Classes
    IterableOps → IterableOnceOps
  41. def dropRight(n: Int): Seq[Byte]
    Definition Classes
    IterableOps
  42. def dropWhile(p: (Byte) => Boolean): Seq[Byte]
    Definition Classes
    IterableOps → IterableOnceOps
  43. def elementWise: ElementWiseExtractor[Int, Byte]
    Definition Classes
    PartialFunction
  44. def empty: Seq[Byte]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  45. def endsWith[B >: Byte](that: Iterable[B]): Boolean
    Definition Classes
    SeqOps
  46. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  47. def equals(o: Any): Boolean
    Definition Classes
    Seq → Equals → AnyRef → Any
  48. def exists(p: (Byte) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  49. def filter(pred: (Byte) => Boolean): Seq[Byte]
    Definition Classes
    IterableOps → IterableOnceOps
  50. def filterNot(pred: (Byte) => Boolean): Seq[Byte]
    Definition Classes
    IterableOps → IterableOnceOps
  51. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  52. def find(p: (Byte) => Boolean): Option[Byte]
    Definition Classes
    IterableOnceOps
  53. def findLast(p: (Byte) => Boolean): Option[Byte]
    Definition Classes
    SeqOps
  54. def flatMap[B](f: (Byte) => IterableOnce[B]): Seq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  55. def flatten[B](implicit asIterable: (Byte) => IterableOnce[B]): Seq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  56. def fold[A1 >: Byte](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  57. def foldLeft[B](z: B)(op: (B, Byte) => B): B
    Definition Classes
    IterableOnceOps
  58. def foldRight[B](z: B)(op: (Byte, B) => B): B
    Definition Classes
    IterableOnceOps
  59. def forall(p: (Byte) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  60. def foreach[U](f: (Byte) => U): Unit
    Definition Classes
    IterableOnceOps
  61. def formatted: String
  62. def fromSpecific(coll: IterableOnce[Byte]): Seq[Byte]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  63. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  64. def groupBy[K](f: (Byte) => K): Map[K, Seq[Byte]]
    Definition Classes
    IterableOps
  65. def groupMap[K, B](key: (Byte) => K)(f: (Byte) => B): Map[K, Seq[B]]
    Definition Classes
    IterableOps
  66. def groupMapReduce[K, B](key: (Byte) => K)(f: (Byte) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  67. def grouped(size: Int): Iterator[Seq[Byte]]
    Definition Classes
    IterableOps
  68. def hashCode(): Int
    Definition Classes
    Seq → AnyRef → Any
  69. def head: Byte
    Definition Classes
    IterableOps
  70. def headOption: Option[Byte]
    Definition Classes
    IterableOps
  71. def indexOf[B >: Byte](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  72. def indexOf[B >: Byte](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  73. def indexOfSlice[B >: Byte](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  74. def indexOfSlice[B >: Byte](that: Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  75. def indexWhere(p: (Byte) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  76. def indexWhere(p: (Byte) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  77. def indices: Range
    Definition Classes
    SeqOps
  78. def init: Seq[Byte]
    Definition Classes
    IterableOps
  79. def inits: Iterator[Seq[Byte]]
    Definition Classes
    IterableOps
  80. def intersect[B >: Byte](that: Seq[B]): Seq[Byte]
    Definition Classes
    SeqOps
  81. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    SeqOps
  82. def isEmpty: Boolean
    Definition Classes
    SeqOps → IterableOnceOps
  83. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  84. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  85. def iterableFactory: SeqFactory[Seq]
    Definition Classes
    Seq → Iterable → IterableOps
  86. def iterator: Iterator[Byte]
    Definition Classes
    ListView → IterableOnce
  87. def knownSize: Int
    Definition Classes
    IterableOnce
  88. def last: Byte
    Definition Classes
    IterableOps
  89. def lastIndexOf[B >: Byte](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  90. def lastIndexOfSlice[B >: Byte](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  91. def lastIndexOfSlice[B >: Byte](that: Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  92. def lastIndexWhere(p: (Byte) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  93. def lastIndexWhere(p: (Byte) => Boolean, end: Int): Int
    Definition Classes
    SeqOps
  94. def lastOption: Option[Byte]
    Definition Classes
    IterableOps
  95. def lazyZip[B](that: Iterable[B]): LazyZip2[Byte, B, ListView.this.type]
    Definition Classes
    Iterable
  96. def length: Int
    Definition Classes
    ListView → SeqOps
  97. def lengthCompare(that: Iterable[_]): Int
    Definition Classes
    SeqOps
  98. def lengthCompare(len: Int): Int
    Definition Classes
    SeqOps
  99. final def lengthIs: SizeCompareOps
    Definition Classes
    SeqOps
    Annotations
    @inline()
  100. def lift: (Int) => Option[Byte]
    Definition Classes
    PartialFunction
  101. def map[B](f: (Byte) => B): Seq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  102. def max[B >: Byte](implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  103. def maxBy[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  104. def maxByOption[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  105. def maxOption[B >: Byte](implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  106. def min[B >: Byte](implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  107. def minBy[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  108. def minByOption[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  109. def minOption[B >: Byte](implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  110. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  111. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  112. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  113. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  114. def newSpecificBuilder: Builder[Byte, Seq[Byte]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  115. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  116. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  117. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  118. def occCounts[B](sq: Seq[B]): Map[B, Int]
    Attributes
    protected[collection]
    Definition Classes
    SeqOps
  119. def orElse[A1 <: Int, B1 >: Byte](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  120. def padTo[B >: Byte](len: Int, elem: B): Seq[B]
    Definition Classes
    SeqOps
  121. def partition(p: (Byte) => Boolean): (Seq[Byte], Seq[Byte])
    Definition Classes
    IterableOps
  122. def partitionMap[A1, A2](f: (Byte) => Either[A1, A2]): (Seq[A1], Seq[A2])
    Definition Classes
    IterableOps
  123. def patch[B >: Byte](from: Int, other: IterableOnce[B], replaced: Int): Seq[B]
    Definition Classes
    SeqOps
  124. def permutations: Iterator[Seq[Byte]]
    Definition Classes
    SeqOps
  125. def prepended[B >: Byte](elem: B): Seq[B]
    Definition Classes
    SeqOps
  126. def prependedAll[B >: Byte](prefix: IterableOnce[B]): Seq[B]
    Definition Classes
    SeqOps
  127. def product[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  128. def reduce[B >: Byte](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  129. def reduceLeft[B >: Byte](op: (B, Byte) => B): B
    Definition Classes
    IterableOnceOps
  130. def reduceLeftOption[B >: Byte](op: (B, Byte) => B): Option[B]
    Definition Classes
    IterableOnceOps
  131. def reduceOption[B >: Byte](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  132. def reduceRight[B >: Byte](op: (Byte, B) => B): B
    Definition Classes
    IterableOnceOps
  133. def reduceRightOption[B >: Byte](op: (Byte, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  134. def reverse: Seq[Byte]
    Definition Classes
    SeqOps
  135. def reverseIterator: Iterator[Byte]
    Definition Classes
    SeqOps
  136. def reversed: Iterable[Byte]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  137. def runWith[U](action: (Byte) => U): (Int) => Boolean
    Definition Classes
    PartialFunction
  138. def sameElements[B >: Byte](that: IterableOnce[B]): Boolean
    Definition Classes
    SeqOps
  139. def scan[B >: Byte](z: B)(op: (B, B) => B): Seq[B]
    Definition Classes
    IterableOps
  140. def scanLeft[B](z: B)(op: (B, Byte) => B): Seq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  141. def scanRight[B](z: B)(op: (Byte, B) => B): Seq[B]
    Definition Classes
    IterableOps
  142. def search[B >: Byte](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    SeqOps
  143. def search[B >: Byte](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    SeqOps
  144. def segmentLength(p: (Byte) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  145. final def segmentLength(p: (Byte) => Boolean): Int
    Definition Classes
    SeqOps
  146. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  147. final def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    SeqOps → IterableOps
  148. final def sizeCompare(otherSize: Int): Int
    Definition Classes
    SeqOps → IterableOps
  149. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  150. def slice(from: Int, until: Int): Seq[Byte]
    Definition Classes
    IterableOps → IterableOnceOps
  151. def sliding(size: Int, step: Int): Iterator[Seq[Byte]]
    Definition Classes
    IterableOps
  152. def sliding(size: Int): Iterator[Seq[Byte]]
    Definition Classes
    IterableOps
  153. def sortBy[B](f: (Byte) => B)(implicit ord: Ordering[B]): Seq[Byte]
    Definition Classes
    SeqOps
  154. def sortWith(lt: (Byte, Byte) => Boolean): Seq[Byte]
    Definition Classes
    SeqOps
  155. def sorted[B >: Byte](implicit ord: Ordering[B]): Seq[Byte]
    Definition Classes
    SeqOps
  156. def span(p: (Byte) => Boolean): (Seq[Byte], Seq[Byte])
    Definition Classes
    IterableOps → IterableOnceOps
  157. def splitAt(n: Int): (Seq[Byte], Seq[Byte])
    Definition Classes
    IterableOps → IterableOnceOps
  158. def startsWith[B >: Byte](that: IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  159. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Byte, S]): S
    Definition Classes
    IterableOnce
  160. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Seq → Iterable
  161. def sum[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  162. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  163. def tail: Seq[Byte]
    Definition Classes
    IterableOps
  164. def tails: Iterator[Seq[Byte]]
    Definition Classes
    IterableOps
  165. def take(n: Int): Seq[Byte]
    Definition Classes
    IterableOps → IterableOnceOps
  166. def takeRight(n: Int): Seq[Byte]
    Definition Classes
    IterableOps
  167. def takeWhile(p: (Byte) => Boolean): Seq[Byte]
    Definition Classes
    IterableOps → IterableOnceOps
  168. def tapEach[U](f: (Byte) => U): Seq[Byte]
    Definition Classes
    IterableOps → IterableOnceOps
  169. def to[C1](factory: Factory[Byte, C1]): C1
    Definition Classes
    IterableOnceOps
  170. def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  171. final def toBuffer[B >: Byte]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  172. def toIndexedSeq: IndexedSeq[Byte]
    Definition Classes
    IterableOnceOps
  173. def toList: List[Byte]
    Definition Classes
    IterableOnceOps
  174. def toMap[K, V](implicit ev: <:<[Byte, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  175. def toSeq: Seq[Byte]
    Definition Classes
    IterableOnceOps
  176. def toSet[B >: Byte]: Set[B]
    Definition Classes
    IterableOnceOps
  177. def toString(): String
    Definition Classes
    ListView → Seq → Function1 → Iterable → AnyRef → Any
  178. def toVector: Vector[Byte]
    Definition Classes
    IterableOnceOps
  179. def transpose[B](implicit asIterable: (Byte) => Iterable[B]): Seq[Seq[B]]
    Definition Classes
    IterableOps
  180. def unapply(a: Int): Option[Byte]
    Definition Classes
    PartialFunction
  181. def unzip[A1, A2](implicit asPair: (Byte) => (A1, A2)): (Seq[A1], Seq[A2])
    Definition Classes
    IterableOps
  182. def unzip3[A1, A2, A3](implicit asTriple: (Byte) => (A1, A2, A3)): (Seq[A1], Seq[A2], Seq[A3])
    Definition Classes
    IterableOps
  183. def updated[B >: Byte](index: Int, elem: B): Seq[B]
    Definition Classes
    SeqOps
  184. def view: SeqView[Byte]
    Definition Classes
    SeqOps → IterableOps
  185. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  186. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  187. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  188. def withFilter(p: (Byte) => Boolean): WithFilter[Byte, [_]Seq[_]]
    Definition Classes
    IterableOps
  189. def zip[B](that: IterableOnce[B]): Seq[(Byte, B)]
    Definition Classes
    IterableOps
  190. def zipAll[A1 >: Byte, B](that: Iterable[B], thisElem: A1, thatElem: B): Seq[(A1, B)]
    Definition Classes
    IterableOps
  191. def zipWithIndex: Seq[(Byte, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

  3. def aggregate[B](z: => B)(seqop: (B, Byte) => 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.

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

    (Since version 2.13.0) Use iterableFactory instead

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

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

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

  7. final def prefixLength(p: (Byte) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  8. final def repr: Seq[Byte]
    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

  9. def reverseMap[B](f: (Byte) => B): Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)

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

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

  11. final def toIterable: ListView.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[Byte]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  14. final def toTraversable: Traversable[Byte]
    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. final def union[B >: Byte](that: Seq[B]): Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use concat instead

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

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

Inherited from AbstractSeq[Byte]

Inherited from Seq[Byte]

Inherited from Equals

Inherited from SeqOps[Byte, Seq, Seq[Byte]]

Inherited from PartialFunction[Int, Byte]

Inherited from (Int) => Byte

Inherited from AbstractIterable[Byte]

Inherited from Iterable[Byte]

Inherited from IterableFactoryDefaults[Byte, [x]Seq[x]]

Inherited from IterableOps[Byte, [_]Seq[_], Seq[Byte]]

Inherited from IterableOnceOps[Byte, [_]Seq[_], Seq[Byte]]

Inherited from IterableOnce[Byte]

Inherited from AnyRef

Inherited from Any

Ungrouped