object
optional
ï
Constructors for optional terms. An optional term is either empty or holds a value. Optional terms should be regarded as opaque terms and always used with the optional/1
object by passing the optional term as a parameter.
logtalk_load(optionals(loader))
static, context_switching_calls
Type-checking support: This object also defines a type
optional
for use with thetype
library object.
Public predicatesï
empty/1
ï
Constructs an empty optional term.
static
empty(Optional)
empty(--nonvar)
- one
of/2
ï
Constructs an optional term holding the given value.
static
of(Value,Optional)
of(@term,--nonvar)
- one
from_goal/3
ï
Constructs an optional term holding a value bound by calling the given goal. Returns an empty optional term if the goal fails or throws an error.
static
from_goal(Goal,Value,Optional)
from_goal(0,*,*)
from_goal(+callable,--term,--nonvar)
- one
from_goal/2
ï
Constructs an optional term holding a value bound by calling the given closure. Returns an empty optional term if the closure fails or throws an error.
static
from_goal(Closure,Optional)
from_goal(1,*)
from_goal(+callable,--nonvar)
- one
from_generator/3
ï
Constructs optional terms with the values generated by calling the given goal. On goal error or failure, returns an empty optional.
static
from_generator(Goal,Value,Optional)
from_generator(0,*,*)
from_generator(+callable,--term,--nonvar)
- one_or_more
from_generator/2
ï
Constructs optional terms with the values generated by calling the given closure. On closure error or failure, returns an empty optional.
static
from_generator(Closure,Optional)
from_generator(1,*)
from_generator(+from_generator,--nonvar)
- one_or_more
Protected predicatesï
(no local declarations; see entity ancestors if any)
Private predicatesï
(no local declarations; see entity ancestors if any)
Operatorsï
(none)
See also