dots
This commit is contained in:
parent
774df1dd38
commit
2be5cf01ec
|
@ -373,7 +373,9 @@
|
|||
(rename-out [remix-#%app #%app])
|
||||
(for-syntax gen:app-dot-transformer
|
||||
app-dot-transformer?)
|
||||
(rename-out [... …]) ;; \ldots
|
||||
(rename-out [... …] ;; \ldots
|
||||
[... dotdotdot]
|
||||
[... ***])
|
||||
#%datum
|
||||
quote
|
||||
module
|
||||
|
|
|
@ -268,11 +268,17 @@ def x4
|
|||
|
||||
;; ... => (#%dot #%dot #%dot)
|
||||
;; … (\ldots) is ... (because that doesn't work with cdots)
|
||||
;; or dotdotdot or ooo or *** (XXX)
|
||||
(def [mac (flipper f x … y)]
|
||||
;; or dotdotdot or ***
|
||||
(def [mac (flipper1 f x … y)]
|
||||
(f y x …))
|
||||
(def [mac (flipper2 f x dotdotdot y)]
|
||||
(f y x dotdotdot))
|
||||
(def [mac (flipper3 f x *** y)]
|
||||
(f y x ***))
|
||||
(module+ test
|
||||
{(flipper - 5 9 0) ≡ (- 0 5 9)})
|
||||
{(flipper1 - 5 9 0) ≡ (- 0 5 9)}
|
||||
{(flipper2 - 5 9 0) ≡ (- 0 5 9)}
|
||||
{(flipper3 - 5 9 0) ≡ (- 0 5 9)})
|
||||
|
||||
;; data gives us interfaces, compound data, and data types and that
|
||||
;; sort of thing
|
||||
|
|
Loading…
Reference in New Issue
Block a user