case class Dtab(dentries0: IndexedSeq[Dentry]) extends DtabBase with Product with Serializable
A Dtab--short for delegation table--comprises a sequence of delegation rules. Together, these describe how to bind a com.twitter.finagle.Path to a set of com.twitter.finagle.Addr. com.twitter.finagle.naming.DefaultInterpreter implements the default binding strategy.
- See also
The user guide for further details.
- Alphabetic
- By Inheritance
- Dtab
- Serializable
- Product
- DtabBase
- 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
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(dentry: Dentry): Dtab
Construct a new Dtab with the given delegation entry appended.
Construct a new Dtab with the given delegation entry appended.
- Definition Classes
- DtabBase
- def ++(dtab: Dtab): Dtab
Construct a new Dtab with the given dtab appended.
Construct a new Dtab with the given dtab appended.
- Definition Classes
- DtabBase
- final def ++[B >: Dentry](suffix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- IterableOps
- Annotations
- @inline()
- final def ++:[B >: Dentry](prefix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- SeqOps → IterableOps
- Annotations
- @inline()
- final def +:[B >: Dentry](elem: B): IndexedSeq[B]
- Definition Classes
- SeqOps
- Annotations
- @inline()
- final def :+[B >: Dentry](elem: B): IndexedSeq[B]
- Definition Classes
- SeqOps
- Annotations
- @inline()
- final def :++[B >: Dentry](suffix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- SeqOps
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def addString(b: StringBuilder): StringBuilder
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def addString(b: StringBuilder, sep: String): StringBuilder
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- Definition Classes
- IterableOnceOps
- def andThen[C](k: PartialFunction[Dentry, C]): PartialFunction[Int, C]
- Definition Classes
- PartialFunction
- def andThen[C](k: (Dentry) => C): PartialFunction[Int, C]
- Definition Classes
- PartialFunction → Function1
- def append(dentry: Dentry): Dtab
Java API for '+'
Java API for '+'
- Definition Classes
- DtabBase
- def appended[B >: Dentry](elem: B): IndexedSeq[B]
- Definition Classes
- SeqOps
- def appendedAll[B >: Dentry](suffix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- SeqOps
- def apply(i: Int): Dentry
- Definition Classes
- DtabBase → SeqOps → Function1
- def applyOrElse[A1 <: Int, B1 >: Dentry](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: Dtab.this.type
- Attributes
- protected
- Definition Classes
- Iterable → IterableOps
- def collect[B](pf: PartialFunction[Dentry, B]): IndexedSeq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def collectFirst[B](pf: PartialFunction[Dentry, B]): Option[B]
- Definition Classes
- IterableOnceOps
- def combinations(n: Int): Iterator[IndexedSeq[Dentry]]
- Definition Classes
- SeqOps
- def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, Dentry]
- Definition Classes
- PartialFunction
- def compose[A](g: (A) => Int): (A) => Dentry
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def concat(dtab: Dtab): Dtab
Java API for '++'
Java API for '++'
- Definition Classes
- DtabBase
- final def concat[B >: Dentry](suffix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- SeqOps → IterableOps
- Annotations
- @inline()
- def contains[A1 >: Dentry](elem: A1): Boolean
- Definition Classes
- SeqOps
- def containsSlice[B >: Dentry](that: Seq[B]): Boolean
- Definition Classes
- SeqOps
- def copyToArray[B >: Dentry](xs: Array[B], start: Int, len: Int): Int
- Definition Classes
- IterableOnceOps
- def copyToArray[B >: Dentry](xs: Array[B], start: Int): Int
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def copyToArray[B >: Dentry](xs: Array[B]): Int
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def corresponds[B](that: Seq[B])(p: (Dentry, B) => Boolean): Boolean
- Definition Classes
- SeqOps
- def corresponds[B](that: IterableOnce[B])(p: (Dentry, B) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def count(p: (Dentry) => Boolean): Int
- Definition Classes
- IterableOnceOps
- val dentries0: IndexedSeq[Dentry]
- Definition Classes
- Dtab → DtabBase
- def diff[B >: Dentry](that: Seq[B]): IndexedSeq[Dentry]
- Definition Classes
- SeqOps
- def distinct: IndexedSeq[Dentry]
- Definition Classes
- SeqOps
- def distinctBy[B](f: (Dentry) => B): IndexedSeq[Dentry]
- Definition Classes
- SeqOps
- def drop(n: Int): IndexedSeq[Dentry]
- Definition Classes
- IndexedSeqOps → IterableOps → IterableOnceOps
- def dropRight(n: Int): IndexedSeq[Dentry]
- Definition Classes
- IndexedSeqOps → IterableOps
- def dropWhile(p: (Dentry) => Boolean): IndexedSeq[Dentry]
- Definition Classes
- IterableOps → IterableOnceOps
- def elementWise: ElementWiseExtractor[Int, Dentry]
- Definition Classes
- PartialFunction
- def empty: IndexedSeq[Dentry]
- Definition Classes
- IterableFactoryDefaults → IterableOps
- def endsWith[B >: Dentry](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: (Dentry) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def filter(pred: (Dentry) => Boolean): IndexedSeq[Dentry]
- Definition Classes
- IterableOps → IterableOnceOps
- def filterNot(pred: (Dentry) => Boolean): IndexedSeq[Dentry]
- Definition Classes
- IterableOps → IterableOnceOps
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def find(p: (Dentry) => Boolean): Option[Dentry]
- Definition Classes
- IterableOnceOps
- def findLast(p: (Dentry) => Boolean): Option[Dentry]
- Definition Classes
- SeqOps
- def flatMap[B](f: (Dentry) => IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def flatten[B](implicit asIterable: (Dentry) => IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def fold[A1 >: Dentry](z: A1)(op: (A1, A1) => A1): A1
- Definition Classes
- IterableOnceOps
- def foldLeft[B](z: B)(op: (B, Dentry) => B): B
- Definition Classes
- IterableOnceOps
- def foldRight[B](z: B)(op: (Dentry, B) => B): B
- Definition Classes
- IndexedSeqOps → IterableOnceOps
- def forall(p: (Dentry) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def foreach[U](f: (Dentry) => U): Unit
- Definition Classes
- IterableOnceOps
- def fromSpecific(coll: IterableOnce[Dentry]): IndexedSeq[Dentry]
- Attributes
- protected
- Definition Classes
- IterableFactoryDefaults → IterableOps
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def groupBy[K](f: (Dentry) => K): Map[K, IndexedSeq[Dentry]]
- Definition Classes
- IterableOps
- def groupMap[K, B](key: (Dentry) => K)(f: (Dentry) => B): Map[K, IndexedSeq[B]]
- Definition Classes
- IterableOps
- def groupMapReduce[K, B](key: (Dentry) => K)(f: (Dentry) => B)(reduce: (B, B) => B): Map[K, B]
- Definition Classes
- IterableOps
- def grouped(size: Int): Iterator[IndexedSeq[Dentry]]
- Definition Classes
- IterableOps
- def hashCode(): Int
- Definition Classes
- Seq → AnyRef → Any
- def head: Dentry
- Definition Classes
- IndexedSeqOps → IterableOps
- def headOption: Option[Dentry]
- Definition Classes
- IndexedSeqOps → IterableOps
- def indexOf[B >: Dentry](elem: B): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding()
- def indexOf[B >: Dentry](elem: B, from: Int): Int
- Definition Classes
- SeqOps
- def indexOfSlice[B >: Dentry](that: Seq[B]): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding()
- def indexOfSlice[B >: Dentry](that: Seq[B], from: Int): Int
- Definition Classes
- SeqOps
- def indexWhere(p: (Dentry) => Boolean): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding()
- def indexWhere(p: (Dentry) => Boolean, from: Int): Int
- Definition Classes
- SeqOps
- def indices: Range
- Definition Classes
- SeqOps
- def init: IndexedSeq[Dentry]
- Definition Classes
- IterableOps
- def inits: Iterator[IndexedSeq[Dentry]]
- Definition Classes
- IterableOps
- def intersect[B >: Dentry](that: Seq[B]): IndexedSeq[Dentry]
- Definition Classes
- SeqOps
- def isDefinedAt(idx: Int): Boolean
- Definition Classes
- SeqOps
- def isEmpty: Boolean
- Definition Classes
- DtabBase → 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[Dentry]
- Definition Classes
- IndexedSeqOps → IterableOnce
- def knownSize: Int
- Definition Classes
- IndexedSeqOps → IterableOnce
- def last: Dentry
- Definition Classes
- IndexedSeqOps → IterableOps
- def lastIndexOf[B >: Dentry](elem: B, end: Int): Int
- Definition Classes
- SeqOps
- def lastIndexOfSlice[B >: Dentry](that: Seq[B]): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding()
- def lastIndexOfSlice[B >: Dentry](that: Seq[B], end: Int): Int
- Definition Classes
- SeqOps
- def lastIndexWhere(p: (Dentry) => Boolean): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding()
- def lastIndexWhere(p: (Dentry) => Boolean, end: Int): Int
- Definition Classes
- SeqOps
- def lastOption: Option[Dentry]
- Definition Classes
- IterableOps
- def lazyZip[B](that: Iterable[B]): LazyZip2[Dentry, B, Dtab.this.type]
- Definition Classes
- Iterable
- def length: Int
- Definition Classes
- DtabBase → 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[Dentry]
- Definition Classes
- PartialFunction
- def lookup(path: Path): NameTree[Name.Path]
Lookup the given
path
with this dtab.Lookup the given
path
with this dtab.- Definition Classes
- DtabBase
- def map[B](f: (Dentry) => B): IndexedSeq[B]
- Definition Classes
- IndexedSeqOps → IterableOps → IterableOnceOps
- def max[B >: Dentry](implicit ord: Ordering[B]): Dentry
- Definition Classes
- IterableOnceOps
- def maxBy[B](f: (Dentry) => B)(implicit cmp: Ordering[B]): Dentry
- Definition Classes
- IterableOnceOps
- def maxByOption[B](f: (Dentry) => B)(implicit cmp: Ordering[B]): Option[Dentry]
- Definition Classes
- IterableOnceOps
- def maxOption[B >: Dentry](implicit ord: Ordering[B]): Option[Dentry]
- Definition Classes
- IterableOnceOps
- def min[B >: Dentry](implicit ord: Ordering[B]): Dentry
- Definition Classes
- IterableOnceOps
- def minBy[B](f: (Dentry) => B)(implicit cmp: Ordering[B]): Dentry
- Definition Classes
- IterableOnceOps
- def minByOption[B](f: (Dentry) => B)(implicit cmp: Ordering[B]): Option[Dentry]
- Definition Classes
- IterableOnceOps
- def minOption[B >: Dentry](implicit ord: Ordering[B]): Option[Dentry]
- 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[Dentry, IndexedSeq[Dentry]]
- 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 >: Dentry](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- Definition Classes
- PartialFunction
- def padTo[B >: Dentry](len: Int, elem: B): IndexedSeq[B]
- Definition Classes
- SeqOps
- def partition(p: (Dentry) => Boolean): (IndexedSeq[Dentry], IndexedSeq[Dentry])
- Definition Classes
- IterableOps
- def partitionMap[A1, A2](f: (Dentry) => Either[A1, A2]): (IndexedSeq[A1], IndexedSeq[A2])
- Definition Classes
- IterableOps
- def patch[B >: Dentry](from: Int, other: IterableOnce[B], replaced: Int): IndexedSeq[B]
- Definition Classes
- SeqOps
- def permutations: Iterator[IndexedSeq[Dentry]]
- Definition Classes
- SeqOps
- def prepended[B >: Dentry](elem: B): IndexedSeq[B]
- Definition Classes
- IndexedSeqOps → SeqOps
- def prependedAll[B >: Dentry](prefix: IterableOnce[B]): IndexedSeq[B]
- Definition Classes
- SeqOps
- def print(printer: PrintWriter): Unit
Print a pretty representation of this Dtab.
Print a pretty representation of this Dtab.
- Definition Classes
- DtabBase
- def product[B >: Dentry](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def reduce[B >: Dentry](op: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeft[B >: Dentry](op: (B, Dentry) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeftOption[B >: Dentry](op: (B, Dentry) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceOption[B >: Dentry](op: (B, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceRight[B >: Dentry](op: (Dentry, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceRightOption[B >: Dentry](op: (Dentry, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reverse: IndexedSeq[Dentry]
- Definition Classes
- IndexedSeqOps → SeqOps
- def reverseIterator: Iterator[Dentry]
- Definition Classes
- IndexedSeqOps → SeqOps
- def reversed: Iterable[Dentry]
- Attributes
- protected
- Definition Classes
- IndexedSeqOps → IterableOnceOps
- def runWith[U](action: (Dentry) => U): (Int) => Boolean
- Definition Classes
- PartialFunction
- def sameElements[B >: Dentry](o: IterableOnce[B]): Boolean
- Definition Classes
- IndexedSeq → SeqOps
- def scan[B >: Dentry](z: B)(op: (B, B) => B): IndexedSeq[B]
- Definition Classes
- IterableOps
- def scanLeft[B](z: B)(op: (B, Dentry) => B): IndexedSeq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def scanRight[B](z: B)(op: (Dentry, B) => B): IndexedSeq[B]
- Definition Classes
- IterableOps
- def search[B >: Dentry](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
- Definition Classes
- IndexedSeqOps → SeqOps
- def search[B >: Dentry](elem: B)(implicit ord: Ordering[B]): SearchResult
- Definition Classes
- IndexedSeqOps → SeqOps
- def segmentLength(p: (Dentry) => Boolean, from: Int): Int
- Definition Classes
- SeqOps
- final def segmentLength(p: (Dentry) => Boolean): Int
- Definition Classes
- SeqOps
- def show: String
- Definition Classes
- DtabBase
- def simplified: Dtab
Simplify the Dtab.
Simplify the Dtab. This returns a functionally equivalent Dtab whose destination name trees have been simplified. The returned Dtab is equivalent with respect to evaluation.
- Definition Classes
- DtabBase
- To do
dedup equivalent entries so that only the last entry is retained
collapse entries with common prefixes
- 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[Dentry]
- Definition Classes
- IndexedSeqOps → IndexedSeqOps → IterableOps → IterableOnceOps
- def sliding(size: Int, step: Int): Iterator[IndexedSeq[Dentry]]
- Definition Classes
- IterableOps
- def sliding(size: Int): Iterator[IndexedSeq[Dentry]]
- Definition Classes
- IterableOps
- def sortBy[B](f: (Dentry) => B)(implicit ord: Ordering[B]): IndexedSeq[Dentry]
- Definition Classes
- SeqOps
- def sortWith(lt: (Dentry, Dentry) => Boolean): IndexedSeq[Dentry]
- Definition Classes
- SeqOps
- def sorted[B >: Dentry](implicit ord: Ordering[B]): IndexedSeq[Dentry]
- Definition Classes
- SeqOps
- def span(p: (Dentry) => Boolean): (IndexedSeq[Dentry], IndexedSeq[Dentry])
- Definition Classes
- IterableOps → IterableOnceOps
- def splitAt(n: Int): (IndexedSeq[Dentry], IndexedSeq[Dentry])
- Definition Classes
- IterableOps → IterableOnceOps
- def startsWith[B >: Dentry](that: IterableOnce[B], offset: Int): Boolean
- Definition Classes
- SeqOps
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[Dentry, S]): S with EfficientSplit
- Definition Classes
- IndexedSeqOps → IterableOnce
- def stringPrefix: String
- Attributes
- protected[this]
- Definition Classes
- IndexedSeq → Seq → Iterable
- def stripPrefix(prefix: Dtab): Dtab
Efficiently removes prefix
prefix
fromdtab
.Efficiently removes prefix
prefix
fromdtab
.- Definition Classes
- DtabBase
- def sum[B >: Dentry](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def tail: IndexedSeq[Dentry]
- Definition Classes
- IterableOps
- def tails: Iterator[IndexedSeq[Dentry]]
- Definition Classes
- IterableOps
- def take(n: Int): IndexedSeq[Dentry]
- Definition Classes
- IndexedSeqOps → IterableOps → IterableOnceOps
- def takeRight(n: Int): IndexedSeq[Dentry]
- Definition Classes
- IndexedSeqOps → IterableOps
- def takeWhile(p: (Dentry) => Boolean): IndexedSeq[Dentry]
- Definition Classes
- IterableOps → IterableOnceOps
- def tapEach[U](f: (Dentry) => U): IndexedSeq[Dentry]
- Definition Classes
- IterableOps → IterableOnceOps
- def to[C1](factory: Factory[Dentry, C1]): C1
- Definition Classes
- IterableOnceOps
- def toArray[B >: Dentry](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- IterableOnceOps
- final def toBuffer[B >: Dentry]: Buffer[B]
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def toIndexedSeq: IndexedSeq[Dentry]
- Definition Classes
- IndexedSeq → IterableOnceOps
- final def toIterable: Dtab.this.type
- Definition Classes
- Iterable → IterableOps
- def toList: List[Dentry]
- Definition Classes
- IterableOnceOps
- def toMap[K, V](implicit ev: <:<[Dentry, (K, V)]): Map[K, V]
- Definition Classes
- IterableOnceOps
- final def toSeq: Dtab.this.type
- Definition Classes
- Seq → IterableOnceOps
- def toSet[B >: Dentry]: Set[B]
- Definition Classes
- IterableOnceOps
- def toString(): String
- Definition Classes
- DtabBase → Seq → Function1 → Iterable → AnyRef → Any
- def toVector: Vector[Dentry]
- Definition Classes
- IterableOnceOps
- def transpose[B](implicit asIterable: (Dentry) => Iterable[B]): IndexedSeq[IndexedSeq[B]]
- Definition Classes
- IterableOps
- def unapply(a: Int): Option[Dentry]
- Definition Classes
- PartialFunction
- def unzip[A1, A2](implicit asPair: (Dentry) => (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
- Definition Classes
- IterableOps
- def unzip3[A1, A2, A3](implicit asTriple: (Dentry) => (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
- Definition Classes
- IterableOps
- def updated[B >: Dentry](index: Int, elem: B): IndexedSeq[B]
- Definition Classes
- SeqOps
- def view: IndexedSeqView[Dentry]
- 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: (Dentry) => Boolean): WithFilter[Dentry, [_]IndexedSeq[_]]
- Definition Classes
- IterableOps
- def zip[B](that: IterableOnce[B]): IndexedSeq[(Dentry, B)]
- Definition Classes
- IterableOps
- def zipAll[A1 >: Dentry, B](that: Iterable[B], thisElem: A1, thatElem: B): IndexedSeq[(A1, B)]
- Definition Classes
- IterableOps
- def zipWithIndex: IndexedSeq[(Dentry, Int)]
- Definition Classes
- IterableOps → IterableOnceOps
Deprecated Value Members
- final def /:[B](z: B)(op: (B, Dentry) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldLeft instead of /:
- final def :\[B](z: B)(op: (Dentry, 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, Dentry) => B, combop: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0)
aggregate
is not relevant for sequential collections. UsefoldLeft(z)(seqop)
instead.
- def companion: IterableFactory[[_]IndexedSeq[_]]
- Definition Classes
- IterableOps
- Annotations
- @deprecated @deprecatedOverriding() @inline()
- Deprecated
(Since version 2.13.0) Use iterableFactory instead
- final def copyToBuffer[B >: Dentry](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: (Dentry) => Boolean): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use segmentLength instead of prefixLength
- final def repr: IndexedSeq[Dentry]
- 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: (Dentry) => 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: Dtab.this.type
- Definition Classes
- Iterable
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Iterable.seq always returns the iterable itself
- final def toIterator: Iterator[Dentry]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator instead of .toIterator
- final def toStream: Stream[Dentry]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .to(LazyList) instead of .toStream
- final def toTraversable: Traversable[Dentry]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use toIterable instead
- final def union[B >: Dentry](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[Dentry]
- Definition Classes
- IndexedSeqOps → IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)