708件ヒット
[701-708件を表示]
(0.043秒)
別のキーワード
キーワード
-
RUBY
_ METHOD _ FUNC (12) -
bm
_ mark (12) - bmcall (12)
-
clone
_ method (12) -
convert
_ type (12) -
ins
_ methods _ i (12) -
ins
_ methods _ priv _ i (12) -
ins
_ methods _ prot _ i (12) -
method
_ arity (12) -
method
_ call (12) -
method
_ clone (12) -
method
_ eq (12) -
method
_ inspect (12) -
method
_ list (12) -
method
_ proc (12) -
method
_ unbind (12) -
rb
_ add _ method (12) -
rb
_ call (12) -
rb
_ catch (12) -
rb
_ check _ convert _ type (12) -
rb
_ class _ instance _ methods (12) -
rb
_ class _ private _ instance _ methods (12) -
rb
_ class _ protected _ instance _ methods (12) -
rb
_ convert _ type (12) -
rb
_ define _ global _ function (12) -
rb
_ define _ method (12) -
rb
_ define _ method _ id (12) -
rb
_ define _ module _ function (12) -
rb
_ define _ private _ method (12) -
rb
_ define _ protected _ method (12) -
rb
_ define _ singleton _ method (12) -
rb
_ export _ method (12) -
rb
_ get _ method _ body (12) -
rb
_ method _ boundp (12) -
rb
_ mod _ alias _ method (12) -
rb
_ mod _ define _ method (12) -
rb
_ mod _ method (12) -
rb
_ mod _ method _ defined (12) -
rb
_ mod _ private _ method (12) -
rb
_ mod _ public _ method (12) -
rb
_ mod _ remove _ method (12) -
rb
_ mod _ undef _ method (12) -
rb
_ obj _ method (12) -
rb
_ obj _ methods (12) -
rb
_ obj _ private _ methods (12) -
rb
_ obj _ protected _ methods (12) -
rb
_ obj _ singleton _ methods (12) -
rb
_ remove _ method (12) -
rb
_ scan _ args (12) -
rb
_ to _ integer (12) -
rb
_ undef _ method (12) -
remove
_ method (12) -
search
_ method (12) -
set
_ method _ visibility (12) - umcall (12)
-
umethod
_ bind (12) -
umethod
_ call (12) -
umethod
_ proc (12) -
umethod
_ unbind (12)
検索結果
-
int rb
_ scan _ args(int argc , const VALUE *argv , const char *fmt , . . . ) (25.0) -
長さ argc の配列 argv を fmt に従って 解析し、第四引数以降で渡されたアドレスに書き込みます。
...る Ruby プログラムでの宣言
def some_method(a, b, opt = nil)
使用例 (2)
VALUE a, rest, block;
rb_scan_args(argc, argv, "1*&", &a, &rest, &block);
対応する Ruby プログラムでの宣言
def some_method(a, *rest, &block)
@see https://github.com/ruby/rub...