jsonwrap ~master (2023-03-14T15:51:55Z)
Dub
Repo
SafeValue
jsonwrap
A simple struct. It is returned by .safe and .as functions
struct
SafeValue (
T
) {
this
(bool exists, bool ok, T value);
exists
[@property getter];
ok
[@property getter];
T
value
;
}
Constructors
this
this
(bool exists, bool ok, T value)
Undocumented in source.
Alias This
value
Members
Properties
exists
exists
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
ok
ok
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
value
T
value
;
Undocumented in source.
Meta
Source
See Implementation
jsonwrap
aliases
JSAB
JSOB
get
functions
JsonArrayBuilder
JsonObjectBuilder
append
as
exists
parse
put
read
remove
safe
structs
SafeValue
A simple struct. It is returned by .safe and .as functions