Skip to content
Snippets Groups Projects
Commit 419e70d4 authored by Liam Healy's avatar Liam Healy
Browse files

Redefine #'copy

Redefine #'copy so that it has one required argument (source) and one
optional argument (destination).  For marrays, create a destination
using make-marray, if one was not given, and then use the memcpy
functions to fill the values.  For all other mobjects, copy will copy
objects by calling one of two generic functions, #'copy-to-destination
and #'copy-making-destination, depending on whether a destination was
supplied.  The former is defined if a GSL _memcpy function exists.
The latter will look for a GSL _clone function, then make a CL
instance with the pointer returned as mpointer.  If there is no clone
function, it will attempt to make a new object using make-load-form,
so will fail if that method has not been defined.

Added a check to defmfun that signals an error if a variable is used
in the C arguments other than top-level that is not used in the CL
arglist.  This should not happen and is usually an indication of a
typo.
parent 7eadb203
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment