sealed abstract class MnemonicCode extends SeqWrapper[String] with MaskedToString
A mnemonic code conforming to BIP39. BIP39 mnemonic codes consist of a varying number of words (most often English, possible with other languages as well) that can be used to generate an ExtPrivateKey which again can be the root of a BIP32 HD wallet.
- Alphabetic
- By Inheritance
- MnemonicCode
- MaskedToString
- SeqWrapper
- IndexedSeq
- IndexedSeqOps
- IndexedSeq
- IndexedSeqOps
- Seq
- SeqOps
- Seq
- Equals
- SeqOps
- PartialFunction
- Function1
- Iterable
- Iterable
- IterableFactoryDefaults
- IterableOps
- IterableOnceOps
- IterableOnce
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ++[B >: String](suffix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- IterableOps
- Annotations
- @inline()
- final def ++:[B >: String](prefix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- SeqOps → IterableOps
- Annotations
- @inline()
- final def +:[B >: String](elem: B): IndexedSeq[B]
- Definition Classes
- SeqOps
- Annotations
- @inline()
- final def :+[B >: String](elem: B): IndexedSeq[B]
- Definition Classes
- SeqOps
- Annotations
- @inline()
- final def :++[B >: String](suffix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- SeqOps
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def addString(b: StringBuilder): b.type
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def addString(b: StringBuilder, sep: String): b.type
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
- Definition Classes
- IterableOnceOps
- def andThen[C](k: PartialFunction[String, C]): PartialFunction[Int, C]
- Definition Classes
- PartialFunction
- def andThen[C](k: (String) => C): PartialFunction[Int, C]
- Definition Classes
- PartialFunction → Function1
- def appended[B >: String](elem: B): IndexedSeq[B]
- Definition Classes
- SeqOps
- def appendedAll[B >: String](suffix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- SeqOps
- def apply(idx: Int): String
- Definition Classes
- SeqWrapper → SeqOps → Function1
- def applyOrElse[A1 <: Int, B1 >: String](x: A1, default: (A1) => B1): B1
- Definition Classes
- PartialFunction
- def applyPreferredMaxLength: Int
- Attributes
- protected
- Definition Classes
- IndexedSeq
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def canEqual(that: Any): Boolean
- Definition Classes
- IndexedSeq → Seq → Equals
- def className: String
- Attributes
- protected[this]
- Definition Classes
- Iterable
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def coll: MnemonicCode.this.type
- Attributes
- protected
- Definition Classes
- Iterable → IterableOps
- def collect[B](pf: PartialFunction[String, B]): IndexedSeq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def collectFirst[B](pf: PartialFunction[String, B]): Option[B]
- Definition Classes
- IterableOnceOps
- def combinations(n: Int): Iterator[IndexedSeq[String]]
- Definition Classes
- SeqOps
- def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, String]
- Definition Classes
- PartialFunction
- def compose[A](g: (A) => Int): (A) => String
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- final def concat[B >: String](suffix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- SeqOps → IterableOps
- Annotations
- @inline()
- def contains[A1 >: String](elem: A1): Boolean
- Definition Classes
- SeqOps
- def containsSlice[B >: String](that: Seq[B]): Boolean
- Definition Classes
- SeqOps
- def copyToArray[B >: String](xs: Array[B], start: Int, len: Int): Int
- Definition Classes
- IterableOnceOps
- def copyToArray[B >: String](xs: Array[B], start: Int): Int
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def copyToArray[B >: String](xs: Array[B]): Int
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def corresponds[B](that: Seq[B])(p: (String, B) => Boolean): Boolean
- Definition Classes
- SeqOps
- def corresponds[B](that: IterableOnce[B])(p: (String, B) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def count(p: (String) => Boolean): Int
- Definition Classes
- IterableOnceOps
- def diff[B >: String](that: Seq[B]): IndexedSeq[String]
- Definition Classes
- SeqOps
- def distinct: IndexedSeq[String]
- Definition Classes
- SeqOps
- def distinctBy[B](f: (String) => B): IndexedSeq[String]
- Definition Classes
- SeqOps
- def drop(n: Int): IndexedSeq[String]
- Definition Classes
- IndexedSeqOps → IterableOps → IterableOnceOps
- def dropRight(n: Int): IndexedSeq[String]
- Definition Classes
- IndexedSeqOps → IterableOps
- def dropWhile(p: (String) => Boolean): IndexedSeq[String]
- Definition Classes
- IterableOps → IterableOnceOps
- def elementWise: ElementWiseExtractor[Int, String]
- Definition Classes
- PartialFunction
- def empty: IndexedSeq[String]
- Definition Classes
- IterableFactoryDefaults → IterableOps
- def endsWith[B >: String](that: Iterable[B]): Boolean
- Definition Classes
- SeqOps
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(o: Any): Boolean
- Definition Classes
- Seq → Equals → AnyRef → Any
- def exists(p: (String) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def filter(pred: (String) => Boolean): IndexedSeq[String]
- Definition Classes
- IterableOps → IterableOnceOps
- def filterNot(pred: (String) => Boolean): IndexedSeq[String]
- Definition Classes
- IterableOps → IterableOnceOps
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def find(p: (String) => Boolean): Option[String]
- Definition Classes
- IterableOnceOps
- def findLast(p: (String) => Boolean): Option[String]
- Definition Classes
- SeqOps
- def flatMap[B](f: (String) => IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def flatten[B](implicit asIterable: (String) => IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def fold[A1 >: String](z: A1)(op: (A1, A1) => A1): A1
- Definition Classes
- IterableOnceOps
- def foldLeft[B](z: B)(op: (B, String) => B): B
- Definition Classes
- IterableOnceOps
- def foldRight[B](z: B)(op: (String, B) => B): B
- Definition Classes
- IndexedSeqOps → IterableOnceOps
- def forall(p: (String) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def foreach[U](f: (String) => U): Unit
- Definition Classes
- IterableOnceOps
- def fromSpecific(coll: IterableOnce[String]): IndexedSeq[String]
- Attributes
- protected
- Definition Classes
- IterableFactoryDefaults → IterableOps
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def groupBy[K](f: (String) => K): Map[K, IndexedSeq[String]]
- Definition Classes
- IterableOps
- def groupMap[K, B](key: (String) => K)(f: (String) => B): Map[K, IndexedSeq[B]]
- Definition Classes
- IterableOps
- def groupMapReduce[K, B](key: (String) => K)(f: (String) => B)(reduce: (B, B) => B): Map[K, B]
- Definition Classes
- IterableOps
- def grouped(size: Int): Iterator[IndexedSeq[String]]
- Definition Classes
- IterableOps
- def hashCode(): Int
- Definition Classes
- Seq → AnyRef → Any
- def head: String
- Definition Classes
- IndexedSeqOps → IterableOps
- def headOption: Option[String]
- Definition Classes
- IndexedSeqOps → IterableOps
- def indexOf[B >: String](elem: B): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding()
- def indexOf[B >: String](elem: B, from: Int): Int
- Definition Classes
- SeqOps
- def indexOfSlice[B >: String](that: Seq[B]): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding()
- def indexOfSlice[B >: String](that: Seq[B], from: Int): Int
- Definition Classes
- SeqOps
- def indexWhere(p: (String) => Boolean): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding()
- def indexWhere(p: (String) => Boolean, from: Int): Int
- Definition Classes
- SeqOps
- def indices: Range
- Definition Classes
- SeqOps
- def init: IndexedSeq[String]
- Definition Classes
- IterableOps
- def inits: Iterator[IndexedSeq[String]]
- Definition Classes
- IterableOps
- def intersect[B >: String](that: Seq[B]): IndexedSeq[String]
- Definition Classes
- SeqOps
- def isDefinedAt(idx: Int): Boolean
- Definition Classes
- SeqOps
- def isEmpty: Boolean
- Definition Classes
- SeqOps → IterableOnceOps
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isTraversableAgain: Boolean
- Definition Classes
- IterableOps → IterableOnceOps
- def iterableFactory: SeqFactory[IndexedSeq]
- Definition Classes
- IndexedSeq → IndexedSeq → Seq → Seq → Iterable → Iterable → IterableOps
- def iterator: Iterator[String]
- Definition Classes
- SeqWrapper → IndexedSeqOps → IterableOnce
- def knownSize: Int
- Definition Classes
- IndexedSeqOps → IterableOnce
- def last: String
- Definition Classes
- IndexedSeqOps → IterableOps
- def lastIndexOf[B >: String](elem: B, end: Int): Int
- Definition Classes
- SeqOps
- def lastIndexOfSlice[B >: String](that: Seq[B]): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding()
- def lastIndexOfSlice[B >: String](that: Seq[B], end: Int): Int
- Definition Classes
- SeqOps
- def lastIndexWhere(p: (String) => Boolean): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding()
- def lastIndexWhere(p: (String) => Boolean, end: Int): Int
- Definition Classes
- SeqOps
- def lastOption: Option[String]
- Definition Classes
- IterableOps
- def lazyZip[B](that: Iterable[B]): LazyZip2[String, B, MnemonicCode.this.type]
- Definition Classes
- Iterable
- def length: Int
- Definition Classes
- SeqWrapper → SeqOps
- final def lengthCompare(that: Iterable[_]): Int
- Definition Classes
- IndexedSeqOps → SeqOps
- final def lengthCompare(len: Int): Int
- Definition Classes
- IndexedSeqOps → SeqOps
- final def lengthIs: SizeCompareOps
- Definition Classes
- SeqOps
- Annotations
- @inline()
- def lift: (Int) => Option[String]
- Definition Classes
- PartialFunction
- def map[B](f: (String) => B): IndexedSeq[B]
- Definition Classes
- IndexedSeqOps → IterableOps → IterableOnceOps
- def max[B >: String](implicit ord: Ordering[B]): String
- Definition Classes
- IterableOnceOps
- def maxBy[B](f: (String) => B)(implicit ord: Ordering[B]): String
- Definition Classes
- IterableOnceOps
- def maxByOption[B](f: (String) => B)(implicit ord: Ordering[B]): Option[String]
- Definition Classes
- IterableOnceOps
- def maxOption[B >: String](implicit ord: Ordering[B]): Option[String]
- Definition Classes
- IterableOnceOps
- def min[B >: String](implicit ord: Ordering[B]): String
- Definition Classes
- IterableOnceOps
- def minBy[B](f: (String) => B)(implicit ord: Ordering[B]): String
- Definition Classes
- IterableOnceOps
- def minByOption[B](f: (String) => B)(implicit ord: Ordering[B]): Option[String]
- Definition Classes
- IterableOnceOps
- def minOption[B >: String](implicit ord: Ordering[B]): Option[String]
- Definition Classes
- IterableOnceOps
- final def mkString: String
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(sep: String): String
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(start: String, sep: String, end: String): String
- Definition Classes
- IterableOnceOps
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def newSpecificBuilder: Builder[String, IndexedSeq[String]]
- Attributes
- protected
- Definition Classes
- IterableFactoryDefaults → IterableOps
- def nonEmpty: Boolean
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def occCounts[B](sq: Seq[B]): Map[B, Int]
- Attributes
- protected[collection]
- Definition Classes
- SeqOps
- def orElse[A1 <: Int, B1 >: String](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- Definition Classes
- PartialFunction
- def padTo[B >: String](len: Int, elem: B): IndexedSeq[B]
- Definition Classes
- SeqOps
- def partition(p: (String) => Boolean): (IndexedSeq[String], IndexedSeq[String])
- Definition Classes
- IterableOps
- def partitionMap[A1, A2](f: (String) => Either[A1, A2]): (IndexedSeq[A1], IndexedSeq[A2])
- Definition Classes
- IterableOps
- def patch[B >: String](from: Int, other: IterableOnce[B], replaced: Int): IndexedSeq[B]
- Definition Classes
- SeqOps
- def permutations: Iterator[IndexedSeq[String]]
- Definition Classes
- SeqOps
- def prepended[B >: String](elem: B): IndexedSeq[B]
- Definition Classes
- IndexedSeqOps → SeqOps
- def prependedAll[B >: String](prefix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- SeqOps
- def product[B >: String](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- def reduce[B >: String](op: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeft[B >: String](op: (B, String) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeftOption[B >: String](op: (B, String) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceOption[B >: String](op: (B, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceRight[B >: String](op: (String, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceRightOption[B >: String](op: (String, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reverse: IndexedSeq[String]
- Definition Classes
- IndexedSeqOps → SeqOps
- def reverseIterator: Iterator[String]
- Definition Classes
- IndexedSeqOps → SeqOps
- def reversed: Iterable[String]
- Attributes
- protected
- Definition Classes
- IndexedSeqOps → IterableOnceOps
- def runWith[U](action: (String) => U): (Int) => Boolean
- Definition Classes
- PartialFunction
- def sameElements[B >: String](o: IterableOnce[B]): Boolean
- Definition Classes
- IndexedSeq → SeqOps
- def scan[B >: String](z: B)(op: (B, B) => B): IndexedSeq[B]
- Definition Classes
- IterableOps
- def scanLeft[B](z: B)(op: (B, String) => B): IndexedSeq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def scanRight[B](z: B)(op: (String, B) => B): IndexedSeq[B]
- Definition Classes
- IterableOps
- def search[B >: String](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
- Definition Classes
- IndexedSeqOps → SeqOps
- def search[B >: String](elem: B)(implicit ord: Ordering[B]): SearchResult
- Definition Classes
- IndexedSeqOps → SeqOps
- def segmentLength(p: (String) => Boolean, from: Int): Int
- Definition Classes
- SeqOps
- final def segmentLength(p: (String) => Boolean): Int
- Definition Classes
- SeqOps
- final def size: Int
- Definition Classes
- SeqOps → IterableOnceOps
- final def sizeCompare(that: Iterable[_]): Int
- Definition Classes
- SeqOps → IterableOps
- final def sizeCompare(otherSize: Int): Int
- Definition Classes
- SeqOps → IterableOps
- final def sizeIs: SizeCompareOps
- Definition Classes
- IterableOps
- Annotations
- @inline()
- def slice(from: Int, until: Int): IndexedSeq[String]
- Definition Classes
- IndexedSeqOps → IndexedSeqOps → IterableOps → IterableOnceOps
- def sliding(size: Int, step: Int): Iterator[IndexedSeq[String]]
- Definition Classes
- IterableOps
- def sliding(size: Int): Iterator[IndexedSeq[String]]
- Definition Classes
- IterableOps
- def sortBy[B](f: (String) => B)(implicit ord: Ordering[B]): IndexedSeq[String]
- Definition Classes
- SeqOps
- def sortWith(lt: (String, String) => Boolean): IndexedSeq[String]
- Definition Classes
- SeqOps
- def sorted[B >: String](implicit ord: Ordering[B]): IndexedSeq[String]
- Definition Classes
- SeqOps
- def span(p: (String) => Boolean): (IndexedSeq[String], IndexedSeq[String])
- Definition Classes
- IterableOps → IterableOnceOps
- def splitAt(n: Int): (IndexedSeq[String], IndexedSeq[String])
- Definition Classes
- IterableOps → IterableOnceOps
- def startsWith[B >: String](that: IterableOnce[B], offset: Int): Boolean
- Definition Classes
- SeqOps
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[String, S]): S with EfficientSplit
- Definition Classes
- IndexedSeqOps → IterableOnce
- def stringPrefix: String
- Attributes
- protected[this]
- Definition Classes
- IndexedSeq → Seq → Iterable
- def sum[B >: String](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def tail: IndexedSeq[String]
- Definition Classes
- IterableOps
- def tails: Iterator[IndexedSeq[String]]
- Definition Classes
- IterableOps
- def take(n: Int): IndexedSeq[String]
- Definition Classes
- IndexedSeqOps → IterableOps → IterableOnceOps
- def takeRight(n: Int): IndexedSeq[String]
- Definition Classes
- IndexedSeqOps → IterableOps
- def takeWhile(p: (String) => Boolean): IndexedSeq[String]
- Definition Classes
- IterableOps → IterableOnceOps
- def tapEach[U](f: (String) => U): IndexedSeq[String]
- Definition Classes
- IterableOps → IterableOnceOps
- def to[C1](factory: Factory[String, C1]): C1
- Definition Classes
- IterableOnceOps
- def toArray[B >: String](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- IterableOnceOps
- final def toBuffer[B >: String]: Buffer[B]
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def toEntropy: BitVector
Returns the entropy initially provided to construct this mnemonic code
- def toEntropyWithChecksum: BitVector
Returns the entropy _with checksum_ originally provided to construct this mnemonic code
- final def toIndexedSeq: IndexedSeq[String]
- Definition Classes
- IndexedSeq → IterableOnceOps
- def toList: List[String]
- Definition Classes
- IterableOnceOps
- def toMap[K, V](implicit ev: <:<[String, (K, V)]): Map[K, V]
- Definition Classes
- IterableOnceOps
- final def toSeq: MnemonicCode.this.type
- Definition Classes
- Seq → IterableOnceOps
- def toSet[B >: String]: Set[B]
- Definition Classes
- IterableOnceOps
- final def toString(): String
- Definition Classes
- MaskedToString → AnyRef → Any
- def toStringSensitive: String
Returns the real value of a sensitive string This should be considered unsafe in the sense that this information is sensitive and could cause loss of funds if used anywhere things are persisted like logs
Returns the real value of a sensitive string This should be considered unsafe in the sense that this information is sensitive and could cause loss of funds if used anywhere things are persisted like logs
- Definition Classes
- MnemonicCode → MaskedToString
- def toVector: Vector[String]
- Definition Classes
- IterableOnceOps
- def transpose[B](implicit asIterable: (String) => Iterable[B]): IndexedSeq[IndexedSeq[B]]
- Definition Classes
- IterableOps
- def unapply(a: Int): Option[String]
- Definition Classes
- PartialFunction
- def unzip[A1, A2](implicit asPair: (String) => (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
- Definition Classes
- IterableOps
- def unzip3[A1, A2, A3](implicit asTriple: (String) => (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
- Definition Classes
- IterableOps
- def updated[B >: String](index: Int, elem: B): IndexedSeq[B]
- Definition Classes
- SeqOps
- def view: IndexedSeqView[String]
- Definition Classes
- IndexedSeqOps → SeqOps → IterableOps
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withFilter(p: (String) => Boolean): WithFilter[String, [_]IndexedSeq[_]]
- Definition Classes
- IterableOps
- lazy val wrapped: Vector[String]
- Attributes
- protected
- Definition Classes
- MnemonicCode → SeqWrapper
- def zip[B](that: IterableOnce[B]): IndexedSeq[(String, B)]
- Definition Classes
- IterableOps
- def zipAll[A1 >: String, B](that: Iterable[B], thisElem: A1, thatElem: B): IndexedSeq[(A1, B)]
- Definition Classes
- IterableOps
- def zipWithIndex: IndexedSeq[(String, Int)]
- Definition Classes
- IterableOps → IterableOnceOps
Deprecated Value Members
- final def /:[B](z: B)(op: (B, String) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldLeft instead of /:
- final def :\[B](z: B)(op: (String, B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldRight instead of :\
- def aggregate[B](z: => B)(seqop: (B, String) => B, combop: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) For sequential collections, prefer
foldLeft(z)(seqop)
. For parallel collections, useParIterableLike#aggregate
.
- def companion: IterableFactory[[_]IndexedSeq[_]]
- Definition Classes
- IterableOps
- Annotations
- @deprecated @deprecatedOverriding() @inline()
- Deprecated
(Since version 2.13.0) Use iterableFactory instead
- final def copyToBuffer[B >: String](dest: Buffer[B]): Unit
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use
dest ++= coll
instead
- 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)
- final def prefixLength(p: (String) => Boolean): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use segmentLength instead of prefixLength
- final def repr: IndexedSeq[String]
- 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
- def reverseMap[B](f: (String) => B): IndexedSeq[B]
- Definition Classes
- SeqOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)
- def seq: MnemonicCode.this.type
- Definition Classes
- Iterable
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Iterable.seq always returns the iterable itself
- final def toIterable: MnemonicCode.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
ortoSeq
, but it doesn't copy non-immutable collections
- final def toIterator: Iterator[String]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator instead of .toIterator
- final def toStream: Stream[String]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .to(LazyList) instead of .toStream
- final def toTraversable: Traversable[String]
- 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
ortoSeq
, but it doesn't copy non-immutable collections
- final def union[B >: String](that: Seq[B]): IndexedSeq[B]
- Definition Classes
- SeqOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use
concat
instead
- def view(from: Int, until: Int): IndexedSeqView[String]
- Definition Classes
- IndexedSeqOps → IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)