1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Merge branch 'pullreq/129' into trunk

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ayumin 2012-08-18 16:28:42 +00:00
parent 6a298a847e
commit 8198cca945
2 changed files with 26 additions and 22 deletions

View file

@ -1,3 +1,8 @@
Sun Aug 19 01:24:32 2012 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
* enum.c: fix docs. https://github.com/ruby/ruby/pull/129 by
richardkmichael (Richard Michael).
Sun Aug 19 00:47:26 2012 Ayumu AIZAWA <ayumu.aizawa@gmail.com> Sun Aug 19 00:47:26 2012 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
* lib/fileutils.rb: fix typo. * lib/fileutils.rb: fix typo.

43
enum.c
View file

@ -2506,27 +2506,26 @@ slicebefore_i(VALUE yielder, VALUE enumerator, int argc, VALUE *argv)
* *
* Creates an enumerator for each chunked elements. * Creates an enumerator for each chunked elements.
* The beginnings of chunks are defined by _pattern_ and the block. * The beginnings of chunks are defined by _pattern_ and the block.
* If _pattern_ === _elt_ returns true or
* the block returns true for the element, * If <code>_pattern_ === _elt_</code> returns <code>true</code> or the block
* the element is beginning of a chunk. * returns <code>true</code> for the element, the element is beginning of a
* * chunk.
* The === and block is called from the first element to the last element
* of _enum_. * The <code>===</code> and _block_ is called from the first element to the last
* The result for the first element is ignored. * element of _enum_. The result for the first element is ignored.
*
* The result enumerator yields the chunked elements as an array for +each+ * The result enumerator yields the chunked elements as an array.
* method. * So +each+ method can be called as follows:
* +each+ method can be called as follows.
* *
* enum.slice_before(pattern).each { |ary| ... } * enum.slice_before(pattern).each { |ary| ... }
* enum.slice_before { |elt| bool }.each { |ary| ... } * enum.slice_before { |elt| bool }.each { |ary| ... }
* enum.slice_before(initial_state) { |elt, state| bool }.each { |ary| ... } * enum.slice_before(initial_state) { |elt, state| bool }.each { |ary| ... }
* *
* Other methods of Enumerator class and Enumerable module, * Other methods of the Enumerator class and Enumerable module,
* such as map, etc., are also usable. * such as map, etc., are also usable.
* *
* For example, iteration over ChangeLog entries can be implemented as * For example, iteration over ChangeLog entries can be implemented as
* follows. * follows:
* *
* # iterate over ChangeLog entries. * # iterate over ChangeLog entries.
* open("ChangeLog") { |f| * open("ChangeLog") { |f|
@ -2538,8 +2537,9 @@ slicebefore_i(VALUE yielder, VALUE enumerator, int argc, VALUE *argv)
* f.slice_before { |line| /\A\S/ === line }.each { |e| pp e } * f.slice_before { |line| /\A\S/ === line }.each { |e| pp e }
* } * }
* *
* "svn proplist -R" produces multiline output for each file. *
* They can be chunked as follows: * "svn proplist -R" produces multiline output for each file.
* They can be chunked as follows:
* *
* IO.popen([{"LC_ALL"=>"C"}, "svn", "proplist", "-R"]) { |f| * IO.popen([{"LC_ALL"=>"C"}, "svn", "proplist", "-R"]) { |f|
* f.lines.slice_before(/\AProp/).each { |lines| p lines } * f.lines.slice_before(/\AProp/).each { |lines| p lines }
@ -2567,15 +2567,14 @@ slicebefore_i(VALUE yielder, VALUE enumerator, int argc, VALUE *argv)
* *
* However local variables are not appropriate to maintain state * However local variables are not appropriate to maintain state
* if the result enumerator is used twice or more. * if the result enumerator is used twice or more.
* In such case, the last state of the 1st +each+ is used in 2nd +each+. * In such a case, the last state of the 1st +each+ is used in the 2nd +each+.
* _initial_state_ argument can be used to avoid this problem. * The _initial_state_ argument can be used to avoid this problem.
* If non-nil value is given as _initial_state_, * If non-nil value is given as _initial_state_,
* it is duplicated for each "each" method invocation of the enumerator. * it is duplicated for each +each+ method invocation of the enumerator.
* The duplicated object is passed to 2nd argument of the block for * The duplicated object is passed to 2nd argument of the block for
* +slice_before+ method. * +slice_before+ method.
* *
* # word wrapping. * # Word wrapping. This assumes all characters have same width.
* # this assumes all characters have same width.
* def wordwrap(words, maxwidth) * def wordwrap(words, maxwidth)
* # if cols is a local variable, 2nd "each" may start with non-zero cols. * # if cols is a local variable, 2nd "each" may start with non-zero cols.
* words.slice_before(cols: 0) { |w, h| * words.slice_before(cols: 0) { |w, h|
@ -2603,8 +2602,8 @@ slicebefore_i(VALUE yielder, VALUE enumerator, int argc, VALUE *argv)
* # 20 * # 20
* # ---------- * # ----------
* *
* mbox contains series of mails which start with Unix From line. * mbox contains series of mails which start with Unix From line.
* So each mail can be extracted by slice before Unix From line. * So each mail can be extracted by slice before Unix From line.
* *
* # parse mbox * # parse mbox
* open("mbox") { |f| * open("mbox") { |f|