org.scalameta.internal.ScalaCompat.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common_2.11 Show documentation
Show all versions of common_2.11 Show documentation
Bag of private and public helpers used in scala.meta's APIs and implementations
package org.scalameta.internal
import scala.collection.immutable
object ScalaCompat {
type IndexedSeqOptimized[+A] = scala.collection.IndexedSeqOptimized[A, immutable.IndexedSeq[A]]
implicit class XtensionScala213ToSeq[T](private val seq: collection.Seq[T]) extends AnyVal {
def toScalaSeq: Seq[T] = seq
}
val EOL = scala.compat.Platform.EOL
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy