Version: 5.1.1
29 Syntax
(require unstable/syntax) |
This library is unstable;
compatibility will not be maintained.
See Unstable for more information.
This binding was added by Vincent St-Amour.
| ||||||||||||||||||||||||||||||||||||||||||
lctx : (or/c syntax? #f) | ||||||||||||||||||||||||||||||||||||||||||
src : (or/c syntax? #f) = #f | ||||||||||||||||||||||||||||||||||||||||||
props : (or/c syntax? #f) = #f | ||||||||||||||||||||||||||||||||||||||||||
cert : (or/c syntax? #f) = #f | ||||||||||||||||||||||||||||||||||||||||||
fmt : string? | ||||||||||||||||||||||||||||||||||||||||||
v : (or/c string? symbol? identifier? keyword? char? number?) |
Like format-id, but returned identifiers are guaranteed to be unique.
The subsequent bindings were added by Sam Tobin-Hochstadt.
(syntax-map f stxl ...) → (listof A) |
f : (-> syntax? A) |
stxl : syntax? |
Example: | ||
|
The subsequent bindings were added by Carl Eastlund <cce@racket-lang.org>.
(syntax-list template ...) |
This form constructs a list of syntax objects based on the given templates. It
is equivalent to (syntax->list #'(template ...)).
Example: | ||
|
29.1 Syntax Object Source Locations
| ||
|
These produce the directory and file name, respectively, of the path with which
stx is associated, or #f if stx is not associated
with a path.
Examples: | |||||||||||||||||||
|