match-vector   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/pattern.xtm

Implementation

(define match-vector
  (lambda (e em)
    (if (not (vector? em)) MATCH-FAILED
        (if (= e em)
            MATCH-TRUE ;; e
            MATCH-FAILED))))


Back to Index