Is [ ] really a method ?

V

Vin Raja

Hi all,

Well while running down the text I read that [] (used in case Arrays and
Hashes) is actually a method called on that Array/hash object and also
that it can be overridden.

well point taken.

BUT if this is just another case of operator overloading then how come
we can call

a[1]='item'

rather than calling

a[]1 ='item'

(Anyways this gave me a syntax error)
Or perhaps it is just another case of Syntactic Sugar?
Or perhaps not, because if that has to be true than the second statement
should also have been true.

So Is [] really a method or is a simple grammar token?

Thanks
Raja
 
M

Morton Goldberg

Hi all,

Well while running down the text I read that [] (used in case
Arrays and
Hashes) is actually a method called on that Array/hash object and also
that it can be overridden.

well point taken.

BUT if this is just another case of operator overloading then how come
we can call

a[1]='item'

rather than calling

a[]1 ='item'

(Anyways this gave me a syntax error)
Or perhaps it is just another case of Syntactic Sugar?
Or perhaps not, because if that has to be true than the second
statement
should also have been true.

So Is [] really a method or is a simple grammar token?

You are really asking about []= which is a different method than [].
And, yes, it really is a method, as is shown by

a = ['a']
a.[]=(1, 'b')
a # => ["a", "b"]

which is the same as

a = ['a']
a[1] = 'b'
a # => ["a", "b"]

Regards, Morton
 
G

Gregory Seidman

Well while running down the text I read that [] (used in case Arrays and
Hashes) is actually a method called on that Array/hash object and also
that it can be overridden.

well point taken.

BUT if this is just another case of operator overloading then how come
we can call

a[1]='item'

rather than calling

a[]1 ='item'

(Anyways this gave me a syntax error)
Or perhaps it is just another case of Syntactic Sugar?
Or perhaps not, because if that has to be true than the second statement
should also have been true.

So Is [] really a method or is a simple grammar token?

Everything is a token in the grammar, of course. When the code is being
parsed the [] is matched as a token, in this case the brackets operator.
The reason your first example works and your second does not is that the
grammar rules for the brackets operator take the arguments to the operator
from between the literal open and close bracket characters. Placing those
arguments outside the brackets, unsurprisingly, does not work.

Since all operators are implemented as method calls in Ruby, the text is
indeed correct in that [] is called as a method on an Array, Hash, or
whatever the object is.

Note, by the way, that the operator in your examples is actually []= rather
than [], i.e. it is an element assignment rather than an element retrieval.
Thanks
Raja
--Greg
 
D

David Morton

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Hi all,

Well while running down the text I read that [] (used in case
Arrays and
Hashes) is actually a method called on that Array/hash object and also
that it can be overridden.

well point taken.

BUT if this is just another case of operator overloading then how come
we can call

a[1]='item'

rather than calling

a[]1 ='item'

(Anyways this gave me a syntax error)



try:

a.[](1)

and

a.[]=(1,'item')


I'd say it is syntactical sugar for those methods....


David Morton
Maia Mailguard http://www.maiamailguard.com
(e-mail address removed)



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFGYOiQUy30ODPkzl0RAnigAJ9GYjaWL0oqfrQTW5gp1jIdSE7NgACfQJ34
g0x2F9TIfcHLYDbQm1QIWSY=
=kMhu
-----END PGP SIGNATURE-----
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Staff online

Members online

Forum statistics

Threads
474,141
Messages
2,570,817
Members
47,361
Latest member
eitamoro

Latest Threads

Top