Unified pattern mathing and templates #13
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Existing "mainstream" in Racket:
Thoughts by other people on matching / templating libraries:
Existing minor features which extend syntax/parse, match or templates:
(match 1 [x:nat #t])
syntax-parse
equivalent oflist-no-order
for match~parens
,~brackets
and~braces
tosyntax-parse
string-append
as a match clausematch
, which counts the number of times each clause matches.gensym
ed identifiers based on unicode subscripts:(syntax-parse stx [(_ (vᵢ …) f) (subtemplate (let ([tmpᵢ vᵢ] …) (f tmpᵢ …))))
will automatically derive some tmpᵢ identifiers, without the need to manually callgenerate-temporaries
.(match '(1 2 3 4 5) [(xlist (? number?)³ b²) b]) ; => '(4 5)
and(ann '(1 2 a b c) (xList Number* Symbol³))
syntax-parse
which allows specifying a partial order between elements within~no-order
, and other global constraintsFeature list:
pat
andtempl
are syntactically identical,(unified-match v [pat templ])
acts like the identity function (requested by @jsmaniac)If x is a list, then...
…
…
(requested by @jsmaniac)(template (define ,y (* ,x ,x)) …)
=>
(match-define (list y …) (map (λ (xᵢ) (* xᵢ xᵢ) x))
This issue was moved to jeapostrophe/remix#16