[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

What is meant by << operator ???

Muhammad mohsin ali Ma

1/10/2009 7:07:00 PM

What is meant by << operator?

For example this operator is used in following code,


/*****************************************************/
def add_product(product)
current_item = @items.find {|item| item.product == product}
if current_item
current_item.increment_quantity
else
current_item = CartItem.new(product)
@items << current_item
end
current_item
end
/*****************************************************/
--
Posted via http://www.ruby-....

7 Answers

Jan-Erik R.

1/10/2009 7:10:00 PM

0

Muhammad mohsin ali Ma schrieb:
> What is meant by << operator?
>
> For example this operator is used in following code,
>
>
> /*****************************************************/
> def add_product(product)
> current_item = @items.find {|item| item.product == product}
> if current_item
> current_item.increment_quantity
> else
> current_item = CartItem.new(product)
> @items << current_item
> end
> current_item
> end
> /*****************************************************/
it appends the object "current_item" to the Array @items

Muhammad mohsin ali Ma

1/10/2009 7:51:00 PM

0

Do u know right syntax of form tag?
--
Posted via http://www.ruby-....

FrihD

1/10/2009 8:30:00 PM

0

Hello,

Muhammad mohsin ali Ma wrote:
> What is meant by << operator?

It is not an operator, but actually is the method "<<". So it depends on
the object that receives this method.

> def add_product(product)
> current_item = @items.find {|item| item.product == product}
> if current_item
> current_item.increment_quantity
> else
> current_item = CartItem.new(product)
> @items << current_item
> end
> current_item
> end

Consequently given that @items certainly is an Array, it appends
current_item to @items which seems quite intuitive.

--Lucas

Gary Wright

1/10/2009 9:04:00 PM

0


On Jan 10, 2009, at 3:29 PM, FrihD wrote:
> Muhammad mohsin ali Ma wrote:
>> What is meant by << operator?
>
> It is not an operator, but actually is the method "<<". So it
> depends on the object that receives this method.


We just had a long rambling thread about operators vs. methods: <http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-t...
>

I'd describe '<<' as a re-definable operator. Syntactically it is an
operator but its semantics are defined by an associated method.

Ruby also has operators that can't be redefined: || && or and not ! ?:

There are often semantics associated with operators that shouldn't be
disregarded without thought. For example:

lhs << rhs

often means that rhs will 'added' to lhs modifying lhs in the
process. On the other hand:

lhs + rhs

generally means new object formed by 'adding' rhs' to 'lhs' will be
returned and that lhs will not be modified.

Ruby doesn't enforce these semantics but developers shouldn't ignore
them either.

Gary Wright



Tim Greer

1/11/2009 12:28:00 AM

0

FrihD wrote:

> It is not an operator, but actually is the method "<<". So it depends
> on the object that receives this method.

Actually, it depends on what it depends on, because it's both (either
or). It's a method, or just an operator (<< left shift bitwise
operator), or as an append operator. I suppose it's all in the use and
wording, though.
--
Tim Greer, CEO/Founder/CTO, BurlyHost.com, Inc.
Shared Hosting, Reseller Hosting, Dedicated & Semi-Dedicated servers
and Custom Hosting. 24/7 support, 30 day guarantee, secure servers.
Industry's most experienced staff! -- Web Hosting With Muscle!

David A. Black

1/11/2009 12:42:00 AM

0

Hi --

On Sun, 11 Jan 2009, Tim Greer wrote:

> FrihD wrote:
>
>> It is not an operator, but actually is the method "<<". So it depends
>> on the object that receives this method.
>
> Actually, it depends on what it depends on, because it's both (either
> or). It's a method, or just an operator (<< left shift bitwise
> operator), or as an append operator. I suppose it's all in the use and
> wording, though.

The method-ness has a certain primacy, in the sense that this:

a << b

is always a method call; that is, it is always the same as:

a.<<(b)

The syntactic sugar, however, has the clear purpose of making it look
like an infix operator. I think it's an operator kind of the way
"attributes" are attributes -- that is, mainly in the eye of the
beholder. The language really doesn't care whether we call things
attributes and operators, so it's all about what helps people make
sense of it.


David

--
David A. Black / Ruby Power and Light, LLC
Ruby/Rails consulting & training: http://www.r...
Coming in 2009: The Well-Grounded Rubyist (http://manning....)

http://www.wis... => Independent, social wishlist management!

Tim Greer

1/11/2009 1:43:00 AM

0

David A. Black wrote:

> Hi --
>
> On Sun, 11 Jan 2009, Tim Greer wrote:
>
>> FrihD wrote:
>>
>>> It is not an operator, but actually is the method "<<". So it
>>> depends on the object that receives this method.
>>
>> Actually, it depends on what it depends on, because it's both (either
>> or). It's a method, or just an operator (<< left shift bitwise
>> operator), or as an append operator. I suppose it's all in the use
>> and wording, though.
>
> The method-ness has a certain primacy, in the sense that this:
>
> a << b
>
> is always a method call; that is, it is always the same as:
>
> a.<<(b)
>
> The syntactic sugar, however, has the clear purpose of making it look
> like an infix operator. I think it's an operator kind of the way
> "attributes" are attributes -- that is, mainly in the eye of the
> beholder. The language really doesn't care whether we call things
> attributes and operators, so it's all about what helps people make
> sense of it.
>
>
> David
>

That's pretty much what I was saying, too. (Or trying to say). I
personally don't care how people refer to things, provided it conveys
the intent and function. It's all good to me.
--
Tim Greer, CEO/Founder/CTO, BurlyHost.com, Inc.
Shared Hosting, Reseller Hosting, Dedicated & Semi-Dedicated servers
and Custom Hosting. 24/7 support, 30 day guarantee, secure servers.
Industry's most experienced staff! -- Web Hosting With Muscle!