[R] Defining binary indexing operators
Huntsinger, Reid
reid_huntsinger at merck.com
Wed Apr 27 22:09:37 CEST 2005
That sounds like a recipe for headaches. If you want to use "x$y" because
you want a certain kind of "x" to act like a list with components for
certain "y", then you probably want to make a class of objects (x) which
have "x$y" implemented as foo(x,y). That way you won't break existing code.
Reid Huntsinger
-----Original Message-----
From: r-help-bounces at stat.math.ethz.ch
[mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Ali -
Sent: Wednesday, April 27, 2005 3:11 PM
To: r-help at stat.math.ethz.ch
Subject: [R] Defining binary indexing operators
Assume we have a function like:
foo <- function(x, y)
how is it possible to define a binary indexing operator, denoted by $, so
that
x$y
functions the same as
foo(x, y)
______________________________________________
R-help at stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide!
http://www.R-project.org/posting-guide.html
More information about the R-help
mailing list