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

monocle.std.PlatformSpecificString.scala Maven / Gradle / Ivy

The newest version!
package monocle.std

import java.net.URL
import monocle.Prism
import scala.util.Try

private[std] trait PlatformSpecificStringOptics {
  val stringToURL: Prism[String, URL] =
    Prism((s: String) => Try(new URL(s)).toOption)(_.toString)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy