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

com.gu.facia.api.utils.IntegerString.scala Maven / Gradle / Ivy

package com.gu.facia.api.utils

import scala.util.Try

object IntegerString {
  def unapply(s: String): Option[Int] = Try {
    s.toInt
  }.toOption
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy