vcopy   xtlang


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

Implementation

(bind-func vcopy
  (lambda (src:i32* len:i64 dest:i32*)
    (doloop (i len)
      (pset! dest i (pref src i)))
    void))


Back to Index

Similar Entries