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

monocle.function.Empty.scala Maven / Gradle / Ivy

package monocle.function

import monocle.{Iso, Prism}

import scala.annotation.implicitNotFound

/**
 * Typeclass that defines a [[Prism]] from an `S` and its empty value
 * @tparam S source of [[Prism]]
 */
@implicitNotFound("Could not find an instance of Empty[${S}], please check Monocle instance location policy to " +
  "find out which import is necessary")
trait Empty[S] extends Serializable {
  def empty: Prism[S, Unit]
}

object Empty extends EmptyFunctions {
  /** lift an instance of [[Empty]] using an [[Iso]] */
  def fromIso[S, A](iso: Iso[S, A])(implicit ev: Empty[A]): Empty[S] = new Empty[S] {
    override def empty: Prism[S, Unit] =
      iso composePrism ev.empty
  }
}

trait EmptyFunctions {
  
  def empty[S](implicit ev: Empty[S]): Prism[S, Unit] =
    ev.empty
  
  def _isEmpty[S](s: S)(implicit ev: Empty[S]): Boolean =
    ev.empty.getOption(s).isDefined

  def _empty[S](implicit ev: Empty[S]): S =
    ev.empty.reverseGet(())
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy