Current section
Files
Jump to
Current section
Files
src/radish/resp.gleam
import gleam/set
pub type Value {
Nan
Null
Infinity
Integer(Int)
Boolean(Bool)
Double(Float)
BigNumber(Int)
NegativeInifnity
Push(List(Value))
BulkError(String)
BulkString(String)
Array(List(Value))
Set(set.Set(Value))
SimpleError(String)
IntegerAsDouble(Int)
SimpleString(String)
Map(List(#(Value, Value)))
}