Learn R Programming

redland (version 1.0.17-18)

freeWorld: Free memory used by a librdf world object

Description

Free memory used by a librdf world object

Usage

freeWorld(.Object)

# S4 method for World freeWorld(.Object)

Arguments

.Object

a World object

Details

After this method is called, the World object is no longer usable and should be deleted "rm(world)" and a new object created.

Examples

Run this code
world <- new("World")
# At this point we would perform some operations using the world object.
# When the world object is no longer needed, we can free the resources it has allocated.
result <- freeWorld(world)
rm(world)

Run the code above in your browser using DataLab