18 Converting a Datum to an Expression
(require scramble/datum-to-expr) | package: scramble-lib |
Added in version 0.5 of package scramble-lib.
procedure
(datum->expression v [#:convert convert]) → syntax?
v : any/c convert : (-> any/c (U #f syntax?)) = (lambda (v) #f)
The types of values directly supported are the quotable atomic values (null, booleans, numbers, charactes, strings, byte strings, symbols, keywords, and regexps), pairs, vectors, boxes, immutable prefab structs, hashes, and syntax objects. Other types of data can be supported via the optional convert argument. The convert function is called with a value that is not one of the types listed above, and it must either produce either #f or a syntax object representing an expression to recreate the value.
The value that the expression produces is equivalent to v with the following exceptions: mutable data (strings, byte strings, vectors, boxes, and hashes) are converted into immutable variants; syntax objects may gain scopes and may lose syntax properties due to serialization. Sharing is generally not preserved.