るりまサーチ

最速Rubyリファレンスマニュアル検索!
5040件ヒット [1-100件を表示] (0.105秒)
トップページ > クエリ:r[x] > クエリ:cat[x]

別のキーワード

  1. _builtin to_r
  2. open3 pipeline_r
  3. matrix elements_to_r
  4. fileutils cp_r
  5. bigdecimal to_r

クラス

キーワード

検索結果

<< 1 2 3 ... > >>

VALUE rb_ary_concat(VALUE ary, VALUE x) (32200.0)

ary.concat x

...ary.concat x...

VALUE rb_catch(const char *tag, VALUE (*proc)(), VALUE data) (32200.0)

catch と同等の動作を実行します。

...
cat
ch と同等の動作を実行します。

まず proc に、yield された値と data を渡して実行します。
その途中で tag が throw されたら rb_catch 全体を終了します。

throw が発生した場合はその値を返します。
throw が発生しなかったとき...
...は proc の返り値を返します。

static VALUE
foo_yield(VALUE a, VALUE b)
{
r
eturn rb_yield(b);
}

static VALUE
foo_catch(VALUE obj)
{
r
eturn rb_catch("footag", foo_yield, INT2FIX(2));
}

static VALUE
foo_abort(VALUE obj)
{
r
eturn rb_throw("footag", Qn...
...il);
}

void
Init_foo(void)
{
VALUE Foo = rb_define_class("Foo", rb_cObject);
r
b_define_method(Foo, "catch", foo_catch, 0);
r
b_define_method(Foo, "abort", foo_abort, 0);
}...

VALUE rb_str_cat(VALUE str, const char *ptr, long len) (32200.0)

文字列 str に、長さ len (NUL 含まず)の C の文字列 ptr を破壊的に連結します。

...文字列 str に、長さ len (NUL 含まず)の C の文字列
ptr を破壊的に連結します。...

VALUE rb_str_cat2(VALUE str, const char *ptr) (32200.0)

文字列 str に C の文字列 ptr を破壊的に 連結します。ptr はヌル終端を仮定しています。

...文字列 str に C の文字列 ptr を破壊的に
連結します。ptr はヌル終端を仮定しています。...

VALUE rb_str_concat(VALUE s1, VALUE s2) (32200.0)

equivalent to "s1.concat s2"

...equivalent to "s1.concat s2"...

絞り込み条件を変える

static VALUE rb_class_allocate_instance(VALUE klass) (32200.0)

Class#allocate の実体です。

...Class#allocate の実体です。...

static VALUE rb_f_catch(VALUE dmy, VALUE tag) (32200.0)

void rb_gc_mark_locations(VALUE *start, VALUE *end) (32200.0)

rubygems/commands/specification_command (32006.0)

指定された Gem パッケージの gemspec の情報を YAML 形式で表示するためのライブラリです。

...age: gem specification [GEMFILE] [options]
Options:
-v, --version VERSION Specify version of gem to examine
--platform PLATFORM Specify the platform of gem to specification
--all Output specifications for all versions of...
...l/Remote Options:
-l, --local 操作をローカルに限定します
-r, --remote 操作をリモートに限定します
-b, --both ローカルとリモートの両方の操作を許可します
-B, --bulk-thre...
...shold COUNT Threshold for switching to bulk
synchronization (default 1000)
--source URL Gem パッケージのリモートリポジトリの URL を指定します
--[no-]http-proxy [URL] リモートの操作に H...
<< 1 2 3 ... > >>