All Downloads are FREE. Search and download functionalities are using the official Maven repository.

munit.internal.Compat.scala Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package munit.internal

import scala.reflect.Selectable.reflectiveSelectable

object Compat {
  type LazyList[+T] = scala.LazyList[T]
  val LazyList = scala.LazyList
  def productElementNames(p: Product): Iterator[String] =
    p.productElementNames
  def collectionClassName(i: Iterable[_]): String = {
    i.asInstanceOf[{ def collectionClassName: String }].collectionClassName
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy