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

scalaz.geo.GeoIdentity.scala Maven / Gradle / Ivy

The newest version!
package scalaz
package geo

sealed trait GeoIdentity[A] extends PimpedType[A] {
  def toRadians(implicit r: Radians[A]): Double = r.toRadians(value)
}

trait GeoIdentitys {
  implicit def GeoIdentityTo[A](x: A) = new GeoIdentity[A] {
    val value = x
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy