scala.collection.generic.package.scala Maven / Gradle / Ivy
The newest version!
/*
* Scala (https://www.scala-lang.org)
*
* Copyright EPFL and Lightbend, Inc.
*
* Licensed under Apache License 2.0
* (http://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package scala.collection
package object generic {
@deprecated("Clearable was moved from collection.generic to collection.mutable", "2.13.0")
type Clearable = scala.collection.mutable.Clearable
@deprecated("Use scala.collection.BuildFrom instead", "2.13.0")
type CanBuildFrom[-From, -A, +C] = scala.collection.BuildFrom[From, A, C]
@deprecated("Growable was moved from collection.generic to collection.mutable", "2.13.0")
type Growable[-A] = scala.collection.mutable.Growable[A]
@deprecated("Shrinkable was moved from collection.generic to collection.mutable", "2.13.0")
type Shrinkable[-A] = scala.collection.mutable.Shrinkable[A]
@deprecated("Use IsIterable instead", "2.13.0")
type IsTraversableLike[Repr] = IsIterable[Repr]
@deprecated("Use IsIterableOnce instead", "2.13.0")
type IsTraversableOnce[Repr] = IsIterableOnce[Repr]
}