Christian Hoffmann <[EMAIL PROTECTED]> wrote:
> I am having difficulties documenting an infix function:
> "%&%" <- function(x,y) { paste(x,y,sep="") }

We have the exact same function, and the following documentation works fine.
Note the documentation filename is "g.am.Rd", but that's just a random name,
unrelated to the function.  Also note that "&" is escaped in the name but not
in the alias!

\name{\%\&\%}
\alias{\%&\%}
\title{Concatenate strings}
\description{a \%&\% b  converts a and b into strings and concatenates them.}
\usage{a \%&\% b}
\value{A string, the concatenation of a and b.}
\examples{3 \%&\% "RAJA"}
\keyword{character}

-- 
                              -- David Brahm ([EMAIL PROTECTED])

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to