object Definition
Companion object for Definition
that provides implicit implementations for the following types:
scala.Option
- arbitary object with a
isDefined()
method that returnsBoolean
- arbitary object with a parameterless
isDefined
method that returnsBoolean
- Source
- Definition.scala
- Alphabetic
- By Inheritance
- Definition
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
implicit
def
definitionOfAnyRefWithIsDefinedMethod[T <: AnyRef { def isDefined(): Boolean }]: Definition[T]
Provides
Definition
implementation for any arbitrary object with aisDefined()
method that returnsBoolean
Provides
Definition
implementation for any arbitrary object with aisDefined()
method that returnsBoolean
- T
any type that has a
isDefined()
method that returnsBoolean
- returns
Definition[T]
that supportsT
inbe defined
syntax
-
implicit
def
definitionOfAnyRefWithParameterlessIsDefinedMethod[T <: AnyRef { def isDefined: Boolean }]: Definition[T]
Provides
Definition
implementation for any arbitrary object with aisDefined
method that returnsBoolean
Provides
Definition
implementation for any arbitrary object with aisDefined
method that returnsBoolean
- T
any type that has a parameterless
isDefined
method that returnsBoolean
- returns
Definition[T]
that supportsT
inbe defined
syntax
-
implicit
def
definitionOfOption[E, OPT[e] <: Option[e]]: Definition[OPT[E]]
Provides
Definition
implementation forscala.Option
Provides
Definition
implementation forscala.Option
- E
the type of the element in the
Option
- OPT
any subtype of
Option
- returns
Definition[OPT[E]]
that supportsOption
inbe defined
syntax