[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Re: ANN: MetaTags 1.0

Richard Kilmer

9/11/2003 3:08:00 AM


On Wednesday, September 10, 2003, at 07:03 PM, Dave Thomas wrote:

>
> On Wednesday, September 10, 2003, at 01:09 PM, Richard Kilmer wrote:
>>
>> class Caml
>> def Caml.from_str(str) # this aligns with to_str
>> self.new(str) # or whatever
>> end
>> end
>> c = "one hump or two" & Caml
>
> Or perhaps even using the '>>' operator (as in 'becomes' or 'inject
> into')
>
> c = "one hump or two" >> Caml
>

And that is just absolute beauty. I did not know that >> was
definable. It reads much better.

so:

d = "11/12/03" >> Date

is just sweet IMHO...

Dave, you rock (as usual).