Description Usage Arguments Examples
To find whether a node is interior of the route or not
1 | isInterior(route, node)
|
route |
– Sequence of nodes (Ex: 5 4 3 8) |
node |
– One of the existing node of the route (Ex: 5) |
1 2 3 4 | route <- c(5, 4, 3 ,8)
node <- 5
isInterior(c(5, 4, 3, 8), 5) # FALSE
isInterior(c(5, 4, 3, 8), 4) # TRUE
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.