What is the difference between these two cffi functions? The fine manual is rather terse about this and I haven't managed to make them do something different yet.
-a
difference between cffi mem-ref/mem-aref
Re: difference between cffi mem-ref/mem-aref
The manual is quite explicit on the difference:
Looking at the code this is in fact the only functional difference:
Although there are compiler macros which implement optimizations if TYPE and/or INDEX are constant.
To elaborate, the optional argument to those functions is treated differently, in mem-ref the offset is in bytes, but in mem-aref the offset is the index multiplied by the size of referenced type.The mem-aref function is similar to mem-ref but will automatically calculate the offset from an index.
Looking at the code this is in fact the only functional difference:
Code: Select all
(defun mem-aref (ptr type &optional (index 0))
"Like MEM-REF except for accessing 1d arrays."
(mem-ref ptr type (* index (foreign-type-size type))))
Re: difference between cffi mem-ref/mem-aref
Thanks, didn't think of looking at the source
-a

-a