DateInterval

case class DateInterval(startDate: LocalDate, endDate: LocalDate, step: Period) extends Seq[LocalDate]

Represents an immutable date interval

Source:
DateInterval.scala
trait Serializable
trait Product
trait Seq[LocalDate]
trait SeqOps[LocalDate, Seq, Seq[LocalDate]]
trait Seq[LocalDate]
trait Equals
trait SeqOps[LocalDate, Seq, Seq[LocalDate]]
trait PartialFunction[Int, LocalDate]
trait Int => LocalDate
trait Iterable[LocalDate]
trait Iterable[LocalDate]
trait IterableFactoryDefaults[LocalDate, Seq]
trait IterableOps[LocalDate, Seq, Seq[LocalDate]]
trait IterableOnceOps[LocalDate, Seq, Seq[LocalDate]]
trait IterableOnce[LocalDate]
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(idx: Int): LocalDate
def by(step: Period): DateInterval
def iterator: Iterator[LocalDate]
def length: Int

Inherited methods

@inline
final def ++[B >: LocalDate](suffix: IterableOnce[B]): Seq[B]
Inherited from:
IterableOps
@inline
final override def ++:[B >: LocalDate](prefix: IterableOnce[B]): Seq[B]
Definition Classes
SeqOps -> IterableOps
Inherited from:
SeqOps
@inline
final def +:[B >: LocalDate](elem: B): Seq[B]
Inherited from:
SeqOps
@inline
final def :+[B >: LocalDate](elem: B): Seq[B]
Inherited from:
SeqOps
@inline
final def :++[B >: LocalDate](suffix: IterableOnce[B]): Seq[B]
Inherited from:
SeqOps
@inline
final def addString(b: StringBuilder): StringBuilder
Inherited from:
IterableOnceOps
@inline
final def addString(b: StringBuilder, sep: String): StringBuilder
Inherited from:
IterableOnceOps
def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
Inherited from:
IterableOnceOps
def andThen[C](k: PartialFunction[LocalDate, C]): PartialFunction[Int, C]
Inherited from:
PartialFunction
override def andThen[C](k: LocalDate => C): PartialFunction[Int, C]
Definition Classes
PartialFunction -> Function1
Inherited from:
PartialFunction
def appended[B >: LocalDate](elem: B): Seq[B]
Inherited from:
SeqOps
def appendedAll[B >: LocalDate](suffix: IterableOnce[B]): Seq[B]
Inherited from:
SeqOps
def applyOrElse[A1 <: Int, B1 >: LocalDate](x: A1, default: A1 => B1): B1
Inherited from:
PartialFunction
def canEqual(that: Any): Boolean
Inherited from:
Seq
def collect[B](pf: PartialFunction[LocalDate, B]): Seq[B]
Inherited from:
IterableOps
def collectFirst[B](pf: PartialFunction[LocalDate, B]): Option[B]
Inherited from:
IterableOnceOps
def combinations(n: Int): Iterator[Seq[LocalDate]]
Inherited from:
SeqOps
def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, LocalDate]
Inherited from:
PartialFunction
@unspecialized
def compose[A](g: A => Int): A => LocalDate
Inherited from:
Function1
@inline
final override def concat[B >: LocalDate](suffix: IterableOnce[B]): Seq[B]
Definition Classes
SeqOps -> IterableOps
Inherited from:
SeqOps
def contains[A1 >: LocalDate](elem: A1): Boolean
Inherited from:
SeqOps
def containsSlice[B >: LocalDate](that: Seq[B]): Boolean
Inherited from:
SeqOps
def copyToArray[B >: LocalDate](xs: Array[B], start: Int, len: Int): Int
Inherited from:
IterableOnceOps
@deprecatedOverriding(message = "This should always forward to the 3-arg version of this method", since = "2.13.4")
def copyToArray[B >: LocalDate](xs: Array[B], start: Int): Int
Inherited from:
IterableOnceOps
@deprecatedOverriding(message = "This should always forward to the 3-arg version of this method", since = "2.13.4")
def copyToArray[B >: LocalDate](xs: Array[B]): Int
Inherited from:
IterableOnceOps
def corresponds[B](that: IterableOnce[B])(p: (LocalDate, B) => Boolean): Boolean
Inherited from:
IterableOnceOps
def corresponds[B](that: Seq[B])(p: (LocalDate, B) => Boolean): Boolean
Inherited from:
SeqOps
def count(p: LocalDate => Boolean): Int
Inherited from:
IterableOnceOps
def diff[B >: LocalDate](that: Seq[B]): Seq[LocalDate]
Inherited from:
SeqOps
def distinct: Seq[LocalDate]
Inherited from:
SeqOps
def distinctBy[B](f: LocalDate => B): Seq[LocalDate]
Inherited from:
SeqOps
def drop(n: Int): Seq[LocalDate]
Inherited from:
IterableOps
def dropRight(n: Int): Seq[LocalDate]
Inherited from:
IterableOps
def dropWhile(p: LocalDate => Boolean): Seq[LocalDate]
Inherited from:
IterableOps
def elementWise: ElementWiseExtractor[Int, LocalDate]
Inherited from:
PartialFunction
override def empty: Seq[LocalDate]
Definition Classes
IterableFactoryDefaults -> IterableOps
Inherited from:
IterableFactoryDefaults
def endsWith[B >: LocalDate](that: Iterable[B]): Boolean
Inherited from:
SeqOps
override def equals(o: Any): Boolean
Definition Classes
Seq -> Equals -> Any
Inherited from:
Seq
def exists(p: LocalDate => Boolean): Boolean
Inherited from:
IterableOnceOps
def filter(pred: LocalDate => Boolean): Seq[LocalDate]
Inherited from:
IterableOps
def filterNot(pred: LocalDate => Boolean): Seq[LocalDate]
Inherited from:
IterableOps
def find(p: LocalDate => Boolean): Option[LocalDate]
Inherited from:
IterableOnceOps
def findLast(p: LocalDate => Boolean): Option[LocalDate]
Inherited from:
SeqOps
def flatMap[B](f: LocalDate => IterableOnce[B]): Seq[B]
Inherited from:
IterableOps
def flatten[B](implicit asIterable: LocalDate => IterableOnce[B]): Seq[B]
Inherited from:
IterableOps
def fold[A1 >: LocalDate](z: A1)(op: (A1, A1) => A1): A1
Inherited from:
IterableOnceOps
def foldLeft[B](z: B)(op: (B, LocalDate) => B): B
Inherited from:
IterableOnceOps
def foldRight[B](z: B)(op: (LocalDate, B) => B): B
Inherited from:
IterableOnceOps
def forall(p: LocalDate => Boolean): Boolean
Inherited from:
IterableOnceOps
def foreach[U](f: LocalDate => U): Unit
Inherited from:
IterableOnceOps
protected def fromSpecific(coll: IterableOnce[LocalDate]): Seq[LocalDate]
Inherited from:
IterableFactoryDefaults
def groupBy[K](f: LocalDate => K): Map[K, Seq[LocalDate]]
Inherited from:
IterableOps
def groupMap[K, B](key: LocalDate => K)(f: LocalDate => B): Map[K, Seq[B]]
Inherited from:
IterableOps
def groupMapReduce[K, B](key: LocalDate => K)(f: LocalDate => B)(reduce: (B, B) => B): Map[K, B]
Inherited from:
IterableOps
def grouped(size: Int): Iterator[Seq[LocalDate]]
Inherited from:
IterableOps
override def hashCode(): Int
Definition Classes
Seq -> Any
Inherited from:
Seq
def head: LocalDate
Inherited from:
IterableOps
def headOption: Option[LocalDate]
Inherited from:
IterableOps
@deprecatedOverriding(message = "Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", since = "2.13.0")
def indexOf[B >: LocalDate](elem: B): Int
Inherited from:
SeqOps
def indexOf[B >: LocalDate](elem: B, from: Int): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", since = "2.13.0")
def indexOfSlice[B >: LocalDate](that: Seq[B]): Int
Inherited from:
SeqOps
def indexOfSlice[B >: LocalDate](that: Seq[B], from: Int): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", since = "2.13.0")
def indexWhere(p: LocalDate => Boolean): Int
Inherited from:
SeqOps
def indexWhere(p: LocalDate => Boolean, from: Int): Int
Inherited from:
SeqOps
def indices: Range
Inherited from:
SeqOps
def init: Seq[LocalDate]
Inherited from:
IterableOps
def inits: Iterator[Seq[LocalDate]]
Inherited from:
IterableOps
def intersect[B >: LocalDate](that: Seq[B]): Seq[LocalDate]
Inherited from:
SeqOps
def isDefinedAt(idx: Int): Boolean
Inherited from:
SeqOps
override def isEmpty: Boolean
Definition Classes
SeqOps -> IterableOnceOps
Inherited from:
SeqOps
override def isTraversableAgain: Boolean
Definition Classes
IterableOps -> IterableOnceOps
Inherited from:
IterableOps
override def iterableFactory: SeqFactory[Seq]
Definition Classes
Seq -> Seq -> Iterable -> Iterable -> IterableOps
Inherited from:
Seq
def knownSize: Int
Inherited from:
IterableOnce
def last: LocalDate
Inherited from:
IterableOps
def lastIndexOf[B >: LocalDate](elem: B, end: Int): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", since = "2.13.0")
def lastIndexOfSlice[B >: LocalDate](that: Seq[B]): Int
Inherited from:
SeqOps
def lastIndexOfSlice[B >: LocalDate](that: Seq[B], end: Int): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", since = "2.13.0")
def lastIndexWhere(p: LocalDate => Boolean): Int
Inherited from:
SeqOps
def lastIndexWhere(p: LocalDate => Boolean, end: Int): Int
Inherited from:
SeqOps
def lastOption: Option[LocalDate]
Inherited from:
IterableOps
def lazyZip[B](that: Iterable[B]): LazyZip2[LocalDate, B, DateInterval]
Inherited from:
Iterable
def lengthCompare(that: Iterable[_]): Int
Inherited from:
SeqOps
def lengthCompare(len: Int): Int
Inherited from:
SeqOps
@inline
final def lengthIs: SizeCompareOps
Inherited from:
SeqOps
def lift: Int => Option[LocalDate]
Inherited from:
PartialFunction
def map[B](f: LocalDate => B): Seq[B]
Inherited from:
IterableOps
def max[B >: LocalDate](implicit ord: Ordering[B]): LocalDate
Inherited from:
IterableOnceOps
def maxBy[B](f: LocalDate => B)(implicit cmp: Ordering[B]): LocalDate
Inherited from:
IterableOnceOps
def maxByOption[B](f: LocalDate => B)(implicit cmp: Ordering[B]): Option[LocalDate]
Inherited from:
IterableOnceOps
def maxOption[B >: LocalDate](implicit ord: Ordering[B]): Option[LocalDate]
Inherited from:
IterableOnceOps
def min[B >: LocalDate](implicit ord: Ordering[B]): LocalDate
Inherited from:
IterableOnceOps
def minBy[B](f: LocalDate => B)(implicit cmp: Ordering[B]): LocalDate
Inherited from:
IterableOnceOps
def minByOption[B](f: LocalDate => B)(implicit cmp: Ordering[B]): Option[LocalDate]
Inherited from:
IterableOnceOps
def minOption[B >: LocalDate](implicit ord: Ordering[B]): Option[LocalDate]
Inherited from:
IterableOnceOps
@inline
final def mkString: String
Inherited from:
IterableOnceOps
@inline
final def mkString(sep: String): String
Inherited from:
IterableOnceOps
final def mkString(start: String, sep: String, end: String): String
Inherited from:
IterableOnceOps
protected def newSpecificBuilder: Builder[LocalDate, Seq[LocalDate]]
Inherited from:
IterableFactoryDefaults
@deprecatedOverriding(message = "nonEmpty is defined as !isEmpty; override isEmpty instead", since = "2.13.0")
def nonEmpty: Boolean
Inherited from:
IterableOnceOps
def orElse[A1 <: Int, B1 >: LocalDate](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
Inherited from:
PartialFunction
def padTo[B >: LocalDate](len: Int, elem: B): Seq[B]
Inherited from:
SeqOps
def partition(p: LocalDate => Boolean): (Seq[LocalDate], Seq[LocalDate])
Inherited from:
IterableOps
def partitionMap[A1, A2](f: LocalDate => Either[A1, A2]): (Seq[A1], Seq[A2])
Inherited from:
IterableOps
def patch[B >: LocalDate](from: Int, other: IterableOnce[B], replaced: Int): Seq[B]
Inherited from:
SeqOps
def permutations: Iterator[Seq[LocalDate]]
Inherited from:
SeqOps
def prepended[B >: LocalDate](elem: B): Seq[B]
Inherited from:
SeqOps
def prependedAll[B >: LocalDate](prefix: IterableOnce[B]): Seq[B]
Inherited from:
SeqOps
def product[B >: LocalDate](implicit num: Numeric[B]): B
Inherited from:
IterableOnceOps
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
def reduce[B >: LocalDate](op: (B, B) => B): B
Inherited from:
IterableOnceOps
def reduceLeft[B >: LocalDate](op: (B, LocalDate) => B): B
Inherited from:
IterableOnceOps
def reduceLeftOption[B >: LocalDate](op: (B, LocalDate) => B): Option[B]
Inherited from:
IterableOnceOps
def reduceOption[B >: LocalDate](op: (B, B) => B): Option[B]
Inherited from:
IterableOnceOps
def reduceRight[B >: LocalDate](op: (LocalDate, B) => B): B
Inherited from:
IterableOnceOps
def reduceRightOption[B >: LocalDate](op: (LocalDate, B) => B): Option[B]
Inherited from:
IterableOnceOps
def reverse: Seq[LocalDate]
Inherited from:
SeqOps
def reverseIterator: Iterator[LocalDate]
Inherited from:
SeqOps
protected def reversed: Iterable[LocalDate]
Inherited from:
IterableOnceOps
def runWith[U](action: LocalDate => U): Int => Boolean
Inherited from:
PartialFunction
def sameElements[B >: LocalDate](that: IterableOnce[B]): Boolean
Inherited from:
SeqOps
def scala$collection$SeqOps$$super$concat[B >: LocalDate](suffix: IterableOnce[B]): Seq[B]
Inherited from:
SeqOps
def scala$collection$SeqOps$$super$sizeCompare(that: Iterable[_]): Int
Inherited from:
SeqOps
Inherited from:
SeqOps
def scan[B >: LocalDate](z: B)(op: (B, B) => B): Seq[B]
Inherited from:
IterableOps
def scanLeft[B](z: B)(op: (B, LocalDate) => B): Seq[B]
Inherited from:
IterableOps
def scanRight[B](z: B)(op: (LocalDate, B) => B): Seq[B]
Inherited from:
IterableOps
def search[B >: LocalDate](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
Inherited from:
SeqOps
def search[B >: LocalDate](elem: B)(implicit ord: Ordering[B]): SearchResult
Inherited from:
SeqOps
def segmentLength(p: LocalDate => Boolean, from: Int): Int
Inherited from:
SeqOps
final def segmentLength(p: LocalDate => Boolean): Int
Inherited from:
SeqOps
final override def size: Int
Definition Classes
SeqOps -> IterableOnceOps
Inherited from:
SeqOps
final override def sizeCompare(that: Iterable[_]): Int
Definition Classes
SeqOps -> IterableOps
Inherited from:
SeqOps
final override def sizeCompare(otherSize: Int): Int
Definition Classes
SeqOps -> IterableOps
Inherited from:
SeqOps
@inline
final def sizeIs: SizeCompareOps
Inherited from:
IterableOps
def slice(from: Int, until: Int): Seq[LocalDate]
Inherited from:
IterableOps
def sliding(size: Int, step: Int): Iterator[Seq[LocalDate]]
Inherited from:
IterableOps
def sliding(size: Int): Iterator[Seq[LocalDate]]
Inherited from:
IterableOps
def sortBy[B](f: LocalDate => B)(implicit ord: Ordering[B]): Seq[LocalDate]
Inherited from:
SeqOps
def sortWith(lt: (LocalDate, LocalDate) => Boolean): Seq[LocalDate]
Inherited from:
SeqOps
def sorted[B >: LocalDate](implicit ord: Ordering[B]): Seq[LocalDate]
Inherited from:
SeqOps
def span(p: LocalDate => Boolean): (Seq[LocalDate], Seq[LocalDate])
Inherited from:
IterableOps
override def splitAt(n: Int): (Seq[LocalDate], Seq[LocalDate])
Definition Classes
IterableOps -> IterableOnceOps
Inherited from:
IterableOps
def startsWith[B >: LocalDate](that: IterableOnce[B], offset: Int): Boolean
Inherited from:
SeqOps
def stepper[S <: Stepper[_]](implicit shape: StepperShape[LocalDate, S]): S
Inherited from:
IterableOnce
def sum[B >: LocalDate](implicit num: Numeric[B]): B
Inherited from:
IterableOnceOps
def tail: Seq[LocalDate]
Inherited from:
IterableOps
def tails: Iterator[Seq[LocalDate]]
Inherited from:
IterableOps
def take(n: Int): Seq[LocalDate]
Inherited from:
IterableOps
def takeRight(n: Int): Seq[LocalDate]
Inherited from:
IterableOps
def takeWhile(p: LocalDate => Boolean): Seq[LocalDate]
Inherited from:
IterableOps
override def tapEach[U](f: LocalDate => U): Seq[LocalDate]
Definition Classes
IterableOps -> IterableOnceOps
Inherited from:
IterableOps
def to[C1](factory: Factory[LocalDate, C1]): C1
Inherited from:
IterableOnceOps
def toArray[B >: LocalDate : ClassTag]: Array[B]
Inherited from:
IterableOnceOps
@inline
final def toBuffer[B >: LocalDate]: Buffer[B]
Inherited from:
IterableOnceOps
def toIndexedSeq: IndexedSeq[LocalDate]
Inherited from:
IterableOnceOps
def toList: List[LocalDate]
Inherited from:
IterableOnceOps
def toMap[K, V](implicit ev: LocalDate <:< (K, V)): Map[K, V]
Inherited from:
IterableOnceOps
final override def toSeq: DateInterval
Definition Classes
Seq -> IterableOnceOps
Inherited from:
Seq
def toSet[B >: LocalDate]: Set[B]
Inherited from:
IterableOnceOps
override def toString(): String
Definition Classes
Seq -> Function1 -> Iterable -> Any
Inherited from:
Seq
def toVector: Vector[LocalDate]
Inherited from:
IterableOnceOps
def transpose[B](implicit asIterable: LocalDate => Iterable[B]): Seq[Seq[B]]
Inherited from:
IterableOps
def unapply(a: Int): Option[LocalDate]
Inherited from:
PartialFunction
def unzip[A1, A2](implicit asPair: LocalDate => (A1, A2)): (Seq[A1], Seq[A2])
Inherited from:
IterableOps
def unzip3[A1, A2, A3](implicit asTriple: LocalDate => (A1, A2, A3)): (Seq[A1], Seq[A2], Seq[A3])
Inherited from:
IterableOps
def updated[B >: LocalDate](index: Int, elem: B): Seq[B]
Inherited from:
SeqOps
override def view: SeqView[LocalDate]
Definition Classes
SeqOps -> IterableOps
Inherited from:
SeqOps
def withFilter(p: LocalDate => Boolean): WithFilter[LocalDate, Seq]
Inherited from:
IterableOps
def zip[B](that: IterableOnce[B]): Seq[(LocalDate, B)]
Inherited from:
IterableOps
def zipAll[A1 >: LocalDate, B](that: Iterable[B], thisElem: A1, thatElem: B): Seq[(A1, B)]
Inherited from:
IterableOps
def zipWithIndex: Seq[(LocalDate, Int)]
Inherited from:
IterableOps

Deprecated and Inherited methods

@inline @deprecated(message = "Use foldLeft instead of /:", since = "2.13.0")
final def /:[B](z: B)(op: (B, LocalDate) => B): B
Deprecated
[Since version 2.13.0] Use foldLeft instead of /:
Inherited from:
IterableOnceOps
@inline @deprecated(message = "Use foldRight instead of :\\", since = "2.13.0")
final def :\[B](z: B)(op: (LocalDate, B) => B): B
Deprecated
[Since version 2.13.0] Use foldRight instead of :\\
Inherited from:
IterableOnceOps
@deprecated(message = "`aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.", since = "2.13.0")
def aggregate[B](z: => B)(seqop: (B, LocalDate) => B, combop: (B, B) => B): B
Deprecated
[Since version 2.13.0] `aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.
Inherited from:
IterableOnceOps
@inline @deprecatedOverriding(message = "Use iterableFactory instead", since = "2.13.0") @deprecated(message = "Use iterableFactory instead", since = "2.13.0")
def companion: IterableFactory[Seq]
Deprecated
[Since version 2.13.0] Use iterableFactory instead
Inherited from:
IterableOps
@inline @deprecated(message = "Use `dest ++= coll` instead", since = "2.13.0")
final def copyToBuffer[B >: LocalDate](dest: Buffer[B]): Unit
Deprecated
[Since version 2.13.0] Use `dest ++= coll` instead
Inherited from:
IterableOnceOps
@deprecated(message = "Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)", since = "2.13.0")
def hasDefiniteSize: Boolean
Deprecated
[Since version 2.13.0] Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
Inherited from:
IterableOnceOps
@inline @deprecated(message = "Use segmentLength instead of prefixLength", since = "2.13.0")
final def prefixLength(p: LocalDate => Boolean): Int
Deprecated
[Since version 2.13.0] Use segmentLength instead of prefixLength
Inherited from:
SeqOps
@deprecated(message = "Use coll instead of repr in a collection implementation, use the collection value itself from the outside", since = "2.13.0")
final def repr: Seq[LocalDate]
Deprecated
[Since version 2.13.0] Use coll instead of repr in a collection implementation, use the collection value itself from the outside
Inherited from:
IterableOps
@deprecated(message = "Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)", since = "2.13.0")
def reverseMap[B](f: LocalDate => B): Seq[B]
Deprecated
[Since version 2.13.0] Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)
Inherited from:
SeqOps
@deprecated(message = "Iterable.seq always returns the iterable itself", since = "2.13.0")
Deprecated
[Since version 2.13.0] Iterable.seq always returns the iterable itself
Inherited from:
Iterable
@deprecated(message = "toIterable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections", since = "2.13.7")
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
Inherited from:
Iterable
@inline @deprecated(message = "Use .iterator instead of .toIterator", since = "2.13.0")
final def toIterator: Iterator[LocalDate]
Deprecated
[Since version 2.13.0] Use .iterator instead of .toIterator
Inherited from:
IterableOnceOps
@inline @deprecated(message = "Use .to(LazyList) instead of .toStream", since = "2.13.0")
final def toStream: Stream[LocalDate]
Deprecated
[Since version 2.13.0] Use .to(LazyList) instead of .toStream
Inherited from:
IterableOnceOps
@deprecated(message = "toTraversable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections", since = "2.13.0")
final def toTraversable: Iterable[LocalDate]
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
Inherited from:
IterableOps
@inline @deprecated(message = "Use `concat` instead", since = "2.13.0")
final def union[B >: LocalDate](that: Seq[B]): Seq[B]
Deprecated
[Since version 2.13.0] Use `concat` instead
Inherited from:
SeqOps
@deprecated(message = "Use .view.slice(from, until) instead of .view(from, until)", since = "2.13.0")
def view(from: Int, until: Int): View[LocalDate]
Deprecated
[Since version 2.13.0] Use .view.slice(from, until) instead of .view(from, until)
Inherited from:
IterableOps