File: freeStatement.Rd

package info (click to toggle)
r-cran-redland 1.0.17-10-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,824 kB
  • sloc: ansic: 6,886; sh: 51; makefile: 5
file content (34 lines) | stat: -rw-r--r-- 1,187 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/Statement.R
\docType{methods}
\name{freeStatement}
\alias{freeStatement}
\alias{freeStatement,Statement-method}
\title{Free memory used by a librdf statement}
\usage{
freeStatement(.Object)

\S4method{freeStatement}{Statement}(.Object)
}
\arguments{
\item{.Object}{a Statement object}
}
\description{
Free memory used by a librdf statement
}
\details{
After this method is called, the Statement object is no longer usable and should
be deleted  \code{"rm(statement)"} and a new object created. This method frees
all resources for the statement, as well as each node in the statement.
}
\examples{
world <- new("World")
stmt <- new("Statement", world, subject="http://www.example.com/myevent",
                                predicate="http://example.com/occurredAt",
                                object="Tue Feb 17 14:05:13 PST 2015")
# At this point, some operations would be performed with the Statement.
# See '?redland' for a complete example.
# When the Statement object is no longer needed, the resources it had allocated can be freed.
freeStatement(stmt)                                
rm(stmt)
}