indexDemoClose {rindex}R Documentation

Demo functions for creating and removing external pointers

Description

Function indexDemoOpen creates an external pointer pointing to an integer vector of length n, indexDemoClose frees the memory linked to the pointer.

Usage

indexDemoOpen(n = 10)
indexDemoClose(extPtr)

Arguments

extPtr the external pointer returned by indexDemoOpen
n the length of the vector stored in C RAM

Details

If the returned pointer is removed finalization happens at the next gc(), if indexDemoClose is used on the pointer then finalization happens immediately, if the pointer is then removed, the finalizer is called again at the next gc() (but doesn't finalize again).

Value

Function indexDemoOpen returns an external pointer, indexDemoClose returns the integer vector previously linked by the pointer.

Author(s)

Jens Oehlschlägel

References

R Development Core Team (2007). Writing R Extensions.

See Also

indexInit, indexDone, indexAddTree, indexDelTree

Examples

ptr <- indexDemoOpen()
rm(ptr)
gc()

ptr <- indexDemoOpen()
indexDemoClose(ptr)
rm(ptr)
gc()

[Package rindex version 0.08 Index]