Skip to main content

release_any

Function release_any 

Source
extern "C-unwind" fn release_any(sexp: SEXP)
Expand description

Non-generic C finalizer called by R’s garbage collector.

Since ExternalPtr stores Box<Box<dyn Any>>, the Any vtable carries the concrete type’s drop function. No generic parameter needed — one finalizer function handles all ExternalPtr<T> types.