Pages
Standard Library
Search
Entities
Object.Decode
Functions
array
(
decoder
:
Function(Object, Result(Object.Error, a))
input
:
Object
)
:
Result(Object.Error, Array(a))
Decodes the object as an Array
using the given decoder.
Decodes the object as a Bool
field
(
key
:
String
decoder
:
Function(Object, Result(Object.Error, a))
input
:
Object
)
:
Result(Object.Error, a)
Decodes a field from an object using the given decoder.
maybe
(
decoder
:
Function(Object, Result(Object.Error, a))
input
:
Object
)
:
Result(Object.Error, Maybe(a))
Decodes the object as a Maybe(a)
using the given decoder.
Decodes the object as a Number
Decodes the object as a String
Decodes the object as a Time