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

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

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

object StandardAnyValExample {

  import com.github.t3hnar.scalax.StandardAnyVal

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy