Skip to content

Deserialize de

Deserializes a binary format back into a value.

 (de (ser 42))
42

 (de (ser "hello"))
"hello"

 (de (ser [1 2 3]))
[1 2 3]

 (de (ser {a: 1 b: 2}))
{
  a: 1
  b: 2
}

Info

  • Reconstructs values from serialized byte arrays
  • Preserves original types and structures
  • Can deserialize any value that was serialized with ser

Warning

  • Ensure the serialized data is valid and complete
  • When deserializing functions, required dependencies must be available

Tip

Use de to recover data that was previously serialized with ser