Learn R Programming

rmonad (version 0.7.0)

views: Get a list of Rmonad objects matching the given tag

Description

Get a list of Rmonad objects matching the given tag

Usage

views(m, ...)

Arguments

m

Rmonad object

...

one or more tags

Value

list of Rmonad objects

Examples

Run this code
# NOT RUN {
library(magrittr)
1 %>>% prod(2) %>% tag('a/b') %>>%
       prod(2) %>% tag('a/c') %>>%
       prod(2) %>% tag('a/c') %>>%
       prod(2) %>% tag('g/a') -> m
views(m, 'a')
# }

Run the code above in your browser using DataLab