Description Usage Arguments Value Author(s) Examples
S3 method to pop (remove) numbers
or
graphs
from their respective arrays
(NUMBERS_
or GRAPHS_
).
1 2 3 4 5 6 7 |
x |
a reference object of call 'number' or 'graph' |
Returns invisible x
Filippo Monari
1 2 3 4 5 6 7 8 9 10 11 12 13 | modello.init(10, 10, 10, 10)
x = number(1)
x$is.linked() # TRUE
pop(x)
x$is.linked() # FALSE
modello.close()
modello.init(10, 10, 10, 10)
g = graph.open()
graph.close()
g$is.linked() # TRUE
pop(g)
g$is.linked() # FALSE
modello.close()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.