Learn R Programming

gdsfmt (version 1.8.3)

ls.gdsn: Return the names of child nodes

Description

Get a list of names for its child nodes.

Usage

ls.gdsn(node, include.hidden=FALSE)

Arguments

node
an object of class gdsn.class, a GDS node
include.hidden
whether including hidden variables or folders

Value

A vector of characters, or character(0) if node is not a folder.

References

http://github.com/zhengxwen/gdsfmt

See Also

cnt.gdsn, objdesp.gdsn, ls.gdsn, index.gdsn

Examples

Run this code
# cteate a GDS file
f <- createfn.gds("test.gds")

# add a list to "test.gds"
node <- add.gdsn(f, name="list", val=list(x=c(1,2), y=c("T","B","C"), z=TRUE))

ls.gdsn(node)

# close the GDS file
closefn.gds(f)


# delete the temporary file
unlink("test.gds", force=TRUE)

Run the code above in your browser using DataLab