object OptArg extends Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- OptArg
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
- val Empty: OptArg[Nothing]
- def apply[A](value: A): OptArg[A]
-
implicit
def
argToOptArg[A](value: A): OptArg[A]
This implicit conversion allows you to pass unwrapped values where
OptArg
is required. - def empty[A]: OptArg[A]
- implicit def intToOptArgDouble(int: Int): OptArg[Double]
- implicit def intToOptArgLong(int: Int): OptArg[Long]
- def some[A](value: A): OptArg[A]
- def unapply[A](opt: OptArg[A]): OptArg[A]