Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^4: OT: Ruby On Rails - your thoughts?

by Fletch (Bishop)
on Nov 17, 2005 at 20:31 UTC ( [id://509556]=note: print w/replies, xml ) Need Help??


in reply to Re^3: OT: Ruby On Rails - your thoughts?
in thread OT: Ruby On Rails - your thoughts?

[ fields[ 1..4 ], fields[ 4..5 ], 0, 0 ].flatten should work in Ruby; passing a range to Array#[] returns the specified subarray.

Update: And additionally it'd be more idiomatic to use do . . . end rather than {} around your blocks. Granted I don't think it makes a difference in this case but the later does bind more tightly than the former.

Replies are listed 'Best First'.
Re^5: OT: Ruby On Rails - your thoughts?
by dragonchild (Archbishop) on Nov 17, 2005 at 20:41 UTC
    [ fields[ 1..4 ], fields[ 4..5 ], 0, 0 ].flatten didn't work when I tried it, but I was probably doing something wrong. I'd like sth.execute() to take an array instead of requiring me to splat it, which would allow for sth.execute( [ ... ] ) vs. the annoying ary = [ ... ]; sth.execute( *ary ). Ideally, it would do something like:
    def execute( *args ) args.flatten .... end
    which would allow for sth.execute( fields[ 1..4 ], fields[ 4..5 ], 0, 0 ), but I'm sure there was a good reason to not do that. I haven't cared enough to find out what that reason was.

    And, yes, do..end is more idiomatic, but I'm not comfortable with it yet. I'm sure I'll be making the shift soon enough. :-)


    My criteria for good software:
    1. Does it work?
    2. Can someone else come in, make a change, and be reasonably certain no bugs were introduced?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://509556]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-26 04:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found