is-match-multi?   scheme


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

Implementation

(define is-match-multi?
  (lambda (x)
    (let ((slgth (string-length (caddr x))))
      (or (= 2 slgth) (= 3 slgth)))))


Back to Index