ivl:transpose   scheme


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

Implementation

;; transpose list paying no attention to key
(define ivl:transpose
   (lambda (val lst)
      (map (lambda (i)
              (+ i val))
           lst)))


Back to Index

Similar Entries