I was expecting to see indexes, rather than values.
Am I overlooking some trivial nuance or what.
Basically i wanted to print index values while iterating an array at
some other project.
and "each_with_index" seemed very obvious for the task but for the
unexpected result.
I was expecting to see indexes, rather than values.
Am I overlooking some trivial nuance or what.
Basically i wanted to print index values while iterating an array at
some other project.
and "each_with_index" seemed very obvious for the task but for the
unexpected result.
The i variable in the block is indeed the index. But the result of the entire
each_with_index expression is not the result of each block invocation, but the collection
of all the array elements.
marcel
···
On Thu, Jul 19, 2007 at 03:46:10PM +0900, Vin Raja wrote:
I was expecting to see indexes, rather than values.
Am I overlooking some trivial nuance or what.
Basically i wanted to print index values while iterating an array at
some other project.
and "each_with_index" seemed very obvious for the task but for the
unexpected result.
Raja
You're telling ruby to print the return value of each with index, which,
according to the ri documentation, is the array itself. If you want to print
the different inidces, you need to put the call to puts inside the block:
m.each_with_index{|v,i| puts( i )}
Putting i as the last statement of the block simply makes that the return
value of the block, but this is ignored by each_with_index, so it's useless.
Although this is not documented, and could of course be overridden in
a class which includes enumerable or one of its subclasses.
···
On 7/19/07, Marcel Molina Jr. <marcel@vernix.org> wrote:
On Thu, Jul 19, 2007 at 03:46:10PM +0900, Vin Raja wrote:
> I have following lines
>
> m=['a','b','c']
> puts m.each_with_index{|v,i| i}
>
> which output in:
>
> >ruby try.rb
> a
> b
> c
> >Exit code: 0
The i variable in the block is indeed the index. But the result of the entire
each_with_index expression is not the result of each block invocation, but the collection
of all the array elements.
You are confusing string evaluation with output. You need to remove
the puts from the string interpolation or use a different approach.
I'd keep things simple and do
r = ['KLP','OGN' ]
print "found ", r.size, " orders\n"
r.each_with_index do |e,i|
print " (", i+1, ") ", e, "\n"
end
robert
···
2007/7/19, Vin Raja <vineetraja@gmail.com>:
Thanks All,
I got the nuance.
But my problem just got a bit more messier.
have a look down here:
r = ['KLP','OGN' ]
msg =<<MSG
Found #{r.length} orders
#{r.map.each_with_index{|v,i| puts "(#{i+1}) #{v}\n" }}
MSG
puts msg
This prints:
>ruby try.rb
(1) KLP
(2) OGN
Found 2 orders
KLPOGN
>Exit code: 0
And this time I also know why, thanks again.
But what I actually wanted was this sort of output:
[mailto:list-bounce@example.com] On Behalf Of Vin Raja:
# But what I actually wanted was this sort of output:
# >ruby try.rb
# Found 2 orders
# (1) KLP
# (2) OGN
just want you to show the evolution from your original scheme (spot the difference) to that of roberts (retaining your original inlining)
It looks like others have already clarified things for you. This is a
bit of a tangent, but I just wanted to mention that 'map' is
superfluous in the above code i.e. the output is identical with and
without it.
irb(main):001:0> r = ['KLP','OGN' ]
=> ["KLP", "OGN"]
irb(main):002:0> r
=> ["KLP", "OGN"]
irb(main):003:0> r.map
=> ["KLP", "OGN"]
···
On Jul 19, 3:12 am, Vin Raja <vineetr...@gmail.com> wrote:
r = ['KLP','OGN' ]
msg =<<MSG
Found #{r.length} orders
#{r.map.each_with_index{|v,i| puts "(#{i+1}) #{v}\n" }}
MSG
While I have found the thread fascinating, it appears to me
that the original code and the 4 schemes are simply trying
to avoid the definition of a function.