mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
rdoc update.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7e97b9af80
commit
b2a83ef6f2
1 changed files with 40 additions and 11 deletions
51
enumerator.c
51
enumerator.c
|
@ -26,8 +26,8 @@
|
||||||
* - Enumerator.new
|
* - Enumerator.new
|
||||||
*
|
*
|
||||||
* Also, most iteration methods without a block returns an enumerator.
|
* Also, most iteration methods without a block returns an enumerator.
|
||||||
* For example, Array#map returns an enumerator if no block given.
|
* For example, Array#map returns an enumerator if a block is not given.
|
||||||
* The enumerator has with_index.
|
* The enumerator has the with_index method.
|
||||||
* So ary.map.with_index works as follows.
|
* So ary.map.with_index works as follows.
|
||||||
*
|
*
|
||||||
* p %w[foo bar baz].map.with_index {|w,i| "#{i}:#{w}" }
|
* p %w[foo bar baz].map.with_index {|w,i| "#{i}:#{w}" }
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
* rescue StopIteration
|
* rescue StopIteration
|
||||||
* return $!.result
|
* return $!.result
|
||||||
* end
|
* end
|
||||||
* y = yield *vs
|
* y = yield(*vs)
|
||||||
* e.feed y
|
* e.feed y
|
||||||
* end
|
* end
|
||||||
* end
|
* end
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
* o = Object.new
|
* o = Object.new
|
||||||
* def o.each
|
* def o.each
|
||||||
* p yield
|
* p yield
|
||||||
* p yield 1
|
* p yield(1)
|
||||||
* p yield(1, 2)
|
* p yield(1, 2)
|
||||||
* 3
|
* 3
|
||||||
* end
|
* end
|
||||||
|
@ -69,7 +69,7 @@
|
||||||
* p o.each {|*x| p x; [:b, *x] }
|
* p o.each {|*x| p x; [:b, *x] }
|
||||||
* #=> [], [:b], [1], [:b, 1], [1, 2], [:b, 1, 2], 3
|
* #=> [], [:b], [1], [:b, 1], [1, 2], [:b, 1, 2], 3
|
||||||
*
|
*
|
||||||
* # convert o.each to an external external iterator for
|
* # convert o.each to an external iterator for
|
||||||
* # implementing an internal iterator.
|
* # implementing an internal iterator.
|
||||||
* p ext_each(o.to_enum) {|*x| p x; [:b, *x] }
|
* p ext_each(o.to_enum) {|*x| p x; [:b, *x] }
|
||||||
* #=> [], [:b], [1], [:b, 1], [1, 2], [:b, 1, 2], 3
|
* #=> [], [:b], [1], [:b, 1], [1, 2], [:b, 1, 2], 3
|
||||||
|
@ -707,6 +707,13 @@ ary2sv(VALUE args, int dup)
|
||||||
* position forward. When the position reached at the end, StopIteration
|
* position forward. When the position reached at the end, StopIteration
|
||||||
* is raised.
|
* is raised.
|
||||||
*
|
*
|
||||||
|
* a = [1,2,3]
|
||||||
|
* e = a.to_enum
|
||||||
|
* p e.next #=> 1
|
||||||
|
* p e.next #=> 2
|
||||||
|
* p e.next #=> 3
|
||||||
|
* p e.next #raises StopIteration
|
||||||
|
*
|
||||||
* Note that enumeration sequence by next method does not affect other
|
* Note that enumeration sequence by next method does not affect other
|
||||||
* non-external enumeration methods, unless underlying iteration
|
* non-external enumeration methods, unless underlying iteration
|
||||||
* methods itself has side-effect, e.g. IO#each_line.
|
* methods itself has side-effect, e.g. IO#each_line.
|
||||||
|
@ -749,6 +756,7 @@ enumerator_peek_values(VALUE obj)
|
||||||
* p e.peek_values #=> []
|
* p e.peek_values #=> []
|
||||||
* e.next
|
* e.next
|
||||||
* p e.peek_values #=> [1]
|
* p e.peek_values #=> [1]
|
||||||
|
* p e.peek_values #=> [1]
|
||||||
* e.next
|
* e.next
|
||||||
* p e.peek_values #=> [1, 2]
|
* p e.peek_values #=> [1, 2]
|
||||||
* e.next
|
* e.next
|
||||||
|
@ -770,6 +778,16 @@ enumerator_peek_values_m(VALUE obj)
|
||||||
* position forward. When the position reached at the end, StopIteration
|
* position forward. When the position reached at the end, StopIteration
|
||||||
* is raised.
|
* is raised.
|
||||||
*
|
*
|
||||||
|
* a = [1,2,3]
|
||||||
|
* e = a.to_enum
|
||||||
|
* p e.next #=> 1
|
||||||
|
* p e.peek #=> 2
|
||||||
|
* p e.peek #=> 2
|
||||||
|
* p e.peek #=> 2
|
||||||
|
* p e.next #=> 2
|
||||||
|
* p e.next #=> 3
|
||||||
|
* p e.next #raises StopIteration
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
|
@ -785,21 +803,33 @@ enumerator_peek(VALUE obj)
|
||||||
*
|
*
|
||||||
* Set the value for the next yield in the enumerator returns.
|
* Set the value for the next yield in the enumerator returns.
|
||||||
*
|
*
|
||||||
* If the value is not set, yield returns nil.
|
* If the value is not set, the yield returns nil.
|
||||||
*
|
*
|
||||||
* This value is cleared after used.
|
* This value is cleared after used.
|
||||||
*
|
*
|
||||||
* o = Object.new
|
* o = Object.new
|
||||||
* def o.each
|
* def o.each
|
||||||
* p yield #=> 1
|
* # (2)
|
||||||
* p yield #=> nil
|
* x = yield
|
||||||
* p yield
|
* p x #=> "foo"
|
||||||
|
* # (5)
|
||||||
|
* x = yield
|
||||||
|
* p x #=> nil
|
||||||
|
* # (7)
|
||||||
|
* x = yield
|
||||||
|
* # not reached
|
||||||
|
* p x
|
||||||
* end
|
* end
|
||||||
* e = o.to_enum
|
* e = o.to_enum
|
||||||
|
* # (1)
|
||||||
* e.next
|
* e.next
|
||||||
* e.feed 1
|
* # (3)
|
||||||
|
* e.feed "foo"
|
||||||
|
* # (4)
|
||||||
* e.next
|
* e.next
|
||||||
|
* # (6)
|
||||||
* e.next
|
* e.next
|
||||||
|
* # (8)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1114,7 +1144,6 @@ generator_each(VALUE obj)
|
||||||
*
|
*
|
||||||
* Returns the return value of the iterator.
|
* Returns the return value of the iterator.
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* o = Object.new
|
* o = Object.new
|
||||||
* def o.each
|
* def o.each
|
||||||
* yield 1
|
* yield 1
|
||||||
|
|
Loading…
Add table
Reference in a new issue