gleerup

Types

pub type Value {
  Boolean(Bool)
  Float(Float)
  Double(Float)
  PositiveInteger(Int)
  NegativeInteger(Int)
  Binary(BitArray)
  String(String)
  Symbol(String)
  Dictionary(dict.Dict(Value, Value))
  Sequence(List(Value))
  Record(tag: Value, values: List(Value))
  Set(set.Set(Value))
}

Constructors

  • Boolean(Bool)
  • Float(Float)
  • Double(Float)
  • PositiveInteger(Int)
  • NegativeInteger(Int)
  • Binary(BitArray)
  • String(String)
  • Symbol(String)
  • Dictionary(dict.Dict(Value, Value))
  • Sequence(List(Value))
  • Record(tag: Value, values: List(Value))
  • Set(set.Set(Value))
Search Document