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

com.github.t3hnar.scalax.examples.PrimitiveExample.scala Maven / Gradle / Ivy

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

object PrimitiveExample {

  import com.github.t3hnar.scalax.Primitive

  Primitive.unapply(()) // None
  Primitive.unapply(true) // Some(true)
  Primitive.unapply(' ') // Some( )
  Primitive.unapply(1) // Some(1)
  Primitive.unapply("") // None
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy