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

izumi.fundamentals.platform.ScalaPlatform.scala Maven / Gradle / Ivy

The newest version!
package izumi.fundamentals.platform

sealed trait ScalaPlatform {}

object ScalaPlatform {
  sealed trait AbstractJVM extends ScalaPlatform
  case object JVM extends AbstractJVM
  case object GraalVMNativeImage extends AbstractJVM

  sealed trait Foreign extends ScalaPlatform
  case object Native extends Foreign
  case object Js extends Foreign
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy