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

io.chrisdavenport.fuuid.http4s.FUUIDVar.scala Maven / Gradle / Ivy

The newest version!
package io.chrisdavenport.fuuid.http4s

import io.chrisdavenport.fuuid.FUUID

object FUUIDVar {
  def unapply(str: String): Option[FUUID] =
    if (!str.isEmpty)
      FUUID.fromString(str).fold(_ => None, Some(_))
    else
      None
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy