mcopy   xtlang


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

Implementation

(bind-func mcopy
  (lambda (src:double* row col dest:double*)
    (memcpy (cast dest i8*) (cast src i8*) (* row col 8))
    void))


Back to Index

Similar Entries