de.sciss.fingertree

RangedSeq

sealed trait RangedSeq[Elem, P] extends FingerTreeLike[Option[(P, P)], Elem, RangedSeq[Elem, P]]

Linear Supertypes
FingerTreeLike[Option[(P, P)], Elem, RangedSeq[Elem, P]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RangedSeq
  2. FingerTreeLike
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def +(elem: Elem): RangedSeq[Elem, P]

    Adds a new element to the tree.

  2. abstract def filterIncludes(interval: (P, P)): Iterator[Elem]

    Filters the tree to contain only those elements that are completely contained within a given interval.

    Filters the tree to contain only those elements that are completely contained within a given interval. Containment means that found_start <= query_start &&

    interval

    the query interval

    returns

    the filtered tree whose elements are contained within the query interval

  3. abstract def filterOverlaps(interval: (P, P)): Iterator[Elem]

    Filters the tree to contain only those elements that overlap a given interval.

    Filters the tree to contain only those elements that overlap a given interval. An overlap occurs if the intersection between query interval and found interval is non-empty. In other words, found_start < query_stop && found_stop > query_start.

    interval

    the query interval

    returns

    the filtered tree whose elements overlap the query interval

  4. abstract def find(point: P): Option[Elem]

    Find an element that contains a given point.

    Find an element that contains a given point. A point is contained in if found_start <= point && found_stop > point. Elements with empty intervals will thus not be detected (the interval version of this method can)

    point

    the query point

    returns

    the element containing the point, or None if such an element does not exist.

  5. abstract def findOverlaps(interval: (P, P)): Option[Elem]

    Finds an element that overlaps a given interval.

    Finds an element that overlaps a given interval. An overlap occurs if the intersection between query interval and found interval is non-empty. In other words, found_start < query_stop && found_stop > query_start. Of the candidates, returns the one with the lowest start point.

    interval

    the query interval

    returns

    the element which overlaps the query interval, or None if there is none.

  6. abstract def includes(interval: (P, P)): Boolean

  7. abstract def includes(point: P): Boolean

  8. abstract def intersect(point: P): Iterator[Elem]

    Filters the tree to contain only those elements that contain a given point.

    Filters the tree to contain only those elements that contain a given point. An element contains the point if its interval start is less than or equal to that point and its interval stop is greater than that point.

    point

    the intersection point

    returns

    the filtered tree having only elements which contain the point

  9. abstract def interval: Option[(P, P)]

    Returns the total interval covered by the sequence, or None if the range is empty

  10. implicit abstract def m: Measure[Elem, Option[(P, P)]]

    Attributes
    protected
    Definition Classes
    FingerTreeLike
  11. abstract def overlaps(interval: (P, P)): Boolean

  12. abstract def tree: FingerTree[Option[(P, P)], Elem]

    Attributes
    protected
    Definition Classes
    FingerTreeLike
  13. abstract def wrap(tree: FingerTree[Option[(P, P)], Elem]): RangedSeq[Elem, P]

    Attributes
    protected
    Definition Classes
    FingerTreeLike

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def head: Elem

    Definition Classes
    FingerTreeLike
  14. final def headOption: Option[Elem]

    Definition Classes
    FingerTreeLike
  15. final def init: RangedSeq[Elem, P]

    Definition Classes
    FingerTreeLike
  16. final def isEmpty: Boolean

    Definition Classes
    FingerTreeLike
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. final def iterator: Iterator[Elem]

    Definition Classes
    FingerTreeLike
  19. final def last: Elem

    Definition Classes
    FingerTreeLike
  20. final def lastOption: Option[Elem]

    Definition Classes
    FingerTreeLike
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def nonEmpty: Boolean

    Definition Classes
    FingerTreeLike
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. final def tail: RangedSeq[Elem, P]

    Definition Classes
    FingerTreeLike
  27. final def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Elem, Col[Elem]]): Col[Elem]

    Definition Classes
    FingerTreeLike
  28. final def toList: List[Elem]

    Definition Classes
    FingerTreeLike
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  31. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  32. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from FingerTreeLike[Option[(P, P)], Elem, RangedSeq[Elem, P]]

Inherited from AnyRef

Inherited from Any

Ungrouped