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

com.github.t3hnar.scalax.StringOption.scala Maven / Gradle / Ivy

The newest version!
package com.github.t3hnar.scalax

/**
 * @author Yaroslav Klymko
 */
object StringOption extends (String => Option[String]) {
  def apply(s: String): Option[String] = Option(s) map (_.trim) filter (_.nonEmpty)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy