blob: 13fd1a25b6911153070acdd2dc52bb97c85e247e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
ri--Ruby Interactive reference
ri displays descriptions of Ruby's built-in methods, classes, and
modules. Run "ri each_with_index" and you get:
--------------------------------------------------------
enumObj.each_with_index {| obj, i | block } -> nil
--------------------------------------------------------
Calls block with two arguments, the item and its index,
for each item in enumObj.
hash = Hash.new
%w(cat dog wombat).each_with_index {|item, index|
hash[item] = index
}
hash #=> {"dog"=>1, "wombat"=>2, "cat"=>0}
Emacs interface by David Alan Black <dblack@candle.superlink.net> is
also bundled.
WWW: http://www.pragmaticprogrammer.com/ruby/downloads/ri.html
Author: The Pragmatic Programmers, LLC
|