diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-04 07:40:46 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-04 07:40:46 +0000 |
| commit | b74e80deb9421133149fad817173144709ba5524 (patch) | |
| tree | 62892ab98f8b492e241afde8b8371b8d81c09583 /enum.c | |
| parent | f859d0aa653e2c00dc99804fe2f4dcff7c387a2d (diff) | |
| download | ruby-b74e80deb9421133149fad817173144709ba5524.tar.gz ruby-b74e80deb9421133149fad817173144709ba5524.tar.xz ruby-b74e80deb9421133149fad817173144709ba5524.zip | |
* lib/cgi.rb (CGI::out): specify -x option for nkf.
* lib/cgi.rb (CGI::out): should not convert utf-8 implicitly using
NKF. it is too Japanese centric.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enum.c')
| -rw-r--r-- | enum.c | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -1187,6 +1187,27 @@ enum_zip(int argc, VALUE *argv, VALUE obj) return result; } +static VALUE +in_i(VALUE i, VALUE *memo) +{ + if (rb_equal(i, memo[0])) { + memo[1] = Qtrue; + rb_iter_break(); + } + return Qnil; +} + +VALUE +rb_enum_in(VALUE elem, VALUE obj) +{ + VALUE memo[2]; + + memo[0] = elem; + memo[1] = Qfalse; + rb_block_call(obj, id_each, 0, 0, in_i, (VALUE)&memo); + return memo[1]; +} + /* * The <code>Enumerable</code> mixin provides collection classes with * several traversal and searching methods, and with the ability to |
