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

a8.shared.FromString.scala Maven / Gradle / Ivy

There is a newer version: 1.0.0-20230212_1012_master
Show newest version
package a8.shared


object FromString {
  implicit val string: FromString[String] =
    new FromString[String] {
      override def fromString(value: String): Option[String] =
        Some(value)
    }
}

trait FromString[A] {
  def fromString(value: String): Option[A]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy