1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/igraph-package.R
\name{\%>\%}
\alias{\%>\%}
\title{Magrittr's pipes}
\usage{
lhs \%>\% rhs
}
\arguments{
\item{lhs}{Left hand side of the pipe.}
\item{rhs}{Right hand side of the pipe.}
}
\value{
Result of applying the right hand side to the
result of the left hand side.
}
\description{
igraph re-exports the \code{\%>\%} operator of magrittr, because
we find it very useful. Please see the documentation in the
\code{magrittr} package.
}
\examples{
make_ring(10) \%>\%
add_edges(c(1,6)) \%>\%
plot()
}
|