Kuddle.Value (Kuddle v1.1.1)

Copy Markdown View Source

Used to represent a value for attributes.

Summary

Types

format()

@type format() :: :plain | :bin | :oct | :dec | :hex

t()

@type t() :: %Kuddle.Value{
  annotations: [String.t()],
  format: format(),
  type: value_type(),
  value: any()
}

value_type()

@type value_type() ::
  :id | :integer | :float | :boolean | :string | :infinity | :nan | :null