It's part of Devin Wiki.
It was created as a helper to define the vector literals #, but it's not actually documented (on the website, it only has a docstring).
;; Example: Vector literal syntax
(define-symbol-macro SPLICE (vector-literal "#" . args)
(if (not (or (pair? args) (eq? args '())))
(throw (new Error "vector require pair"))
(let ((v (list->array args)))
(Object.freeze v)
v)))
Related issues:
It's part of Devin Wiki.
It was created as a helper to define the vector literals
#, but it's not actually documented (on the website, it only has a docstring).Related issues:
set-special!#478