nwsFind {nws} | R Documentation |
Find something in the shared netWorkSpace, .Object.
.Object |
a netWorkSpace class object |
xName |
name of the variable to be found |
Find method blocks until a value for xName is found in the shared netWorkSpace
.Object. Once found, return the value associated with xName, but the value
is not removed from the shared netWorkSpace (as in the case of nwsFetch
).
If there is more than one value associated with xName, the
particular value returned depends on xName's behavior. See
nwsDeclare
for details.
## Not run: ws = new('netWorkSpace', 'nws example') nwsStore(ws, 'x', 1) x = nwsFind(ws, 'x') ## End(Not run)