vote up 1 vote down star
1

Does anyone use tuples in Ruby? If so, how may one implement a tuple? Ruby hashes are nice and work almost as well, but I'd really like to see something like the Tuple class in Python, where you can use . notation to find the value for which you are looking. I'm wanting this so that I can create an implementation of D, similar to Dee for Python.

flag

2 Answers

vote up 6 vote down check

OpenStruct?

link|flag
That is exactly what I was looking for. Thanks! – Ryan Riley Feb 8 at 22:00
np :) to answer you question though: no i do not use tuples in ruby, as openstructs or otherwise. i use classes at the high end and hashes at the low end :) – Iraimbilanja Feb 9 at 11:01
vote up 5 vote down

Based on the fact that you talk about hashes and . notation I'm going to assume you mean a different kind of tuple than the (1. "a") sort. You're probably looking for the Struct class. eg:

Person = Struct.new(:name, :age)
me = Person.new
me.name = "Guy"
me.age =  30
link|flag
That's close, but having to name it bugs me. I was looking for something like the (1. "a") sort but with the property get/set notation you describe. – Ryan Riley Feb 8 at 22:02
3  
@panesofglass, there's no need to name nothing: a = Struct.new(:name, :age).new; a.name = "Guy" – paradoja Feb 9 at 0:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.