object OptArg extends Serializable

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

Value Members

  1. val Empty: OptArg[Nothing]
  2. def apply[A](value: A): OptArg[A]
  3. implicit def argToOptArg[A](value: A): OptArg[A]

    This implicit conversion allows you to pass unwrapped values where OptArg is required.

  4. def empty[A]: OptArg[A]
  5. implicit def intToOptArgDouble(int: Int): OptArg[Double]
  6. implicit def intToOptArgLong(int: Int): OptArg[Long]
  7. def some[A](value: A): OptArg[A]
  8. def unapply[A](opt: OptArg[A]): OptArg[A]