object NOpt extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NOpt
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class WithFilter[+A] extends AnyRef

Value Members

  1. final val Empty: NOpt[Nothing]
  2. def apply[A](value: A): NOpt[A]

    Creates a NOpt out of given value.

    Creates a NOpt out of given value. Works like Option.apply, i.e. null is translated into an empty NOpt. Note however that NOpt does have a representation of "present null" (which can be obtained using NOpt.some).

  3. def empty[A]: NOpt[A]
  4. implicit def opt2Iterable[A](xo: NOpt[A]): Iterable[A]
  5. def some[A](value: A): NOpt[A]
  6. def unapply[A](opt: NOpt[A]): NOpt[A]