srange   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/examples/core/audio_streams.xtm

Implementation

(bind-func srange:[Stream{!a}*,!a,!a]*
  (lambda (low high)
    (if (> low high)
        null
        (scons low (srange (+ low 1) high)))))


Back to Index