425件ヒット
[401-425件を表示]
(0.053秒)
別のキーワード
ライブラリ
- English (12)
- ビルトイン (114)
- fiddle (12)
-
fiddle
/ import (12) - fileutils (36)
-
irb
/ context (24) - json (12)
- openssl (60)
クラス
- Array (21)
- Dir (9)
-
Fiddle
:: Function (12) - File (24)
-
IRB
:: Context (24) -
OpenSSL
:: ASN1 :: Null (24) - String (12)
モジュール
-
Fiddle
:: Importer (12) - FileUtils (36)
-
JSON
:: Generator :: GeneratorMethods :: NilClass (12) - Kernel (60)
-
OpenSSL
:: ASN1 (24)
キーワード
-
$ CHILD _ STATUS (12) -
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - ASN1 (12)
-
NEWS for Ruby 2
. 2 . 0 (11) - Ruby用語集 (12)
- call (12)
- cmp (12)
-
compare
_ file (12) - empty? (9)
- fiddle (12)
- identical? (12)
- irb (12)
- new (24)
- pack (21)
- pack テンプレート文字列 (12)
- path (12)
-
prompt
_ mode (12) -
prompt
_ mode= (12) -
rb
_ ary _ push (12) -
rb
_ define _ class _ under (12) -
rb
_ eval _ string _ protect (12) -
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 2 feature (12) -
ruby 1
. 8 . 4 feature (12) - size (12)
- spawn (48)
- struct (12)
-
to
_ json (12) - unpack (12)
検索結果
先頭3件
-
IRB
:: Context # prompt _ mode=(mode) (12.0) -
プロンプトモードを mode に設定します。
...@param mode プロンプトモードを Symbol で指定します。オリジナルの
プロンプトモードか、:DEFAULT、:CLASSIC、:SIMPLE、:INF_RUBY、
:XMP、:NULL のいずれを指定してください。
@see IRB::Context#prompt_mode, lib:irb#customize_prompt... -
Kernel
$ $ CHILD _ STATUS -> Process :: Status | nil (12.0) -
$? の別名
...$? の別名
require "English"
out = `wget https://www.ruby-lang.org/en/about/license.txt -O - 2>/dev/null`
if $CHILD_STATUS.to_i == 0
print "wget success\n"
out.split(/\n/).each { |line|
printf "%s\n", line
}
else
print "wget failed\n"
end... -
VALUE rb
_ ary _ push(VALUE ary , VALUE item) (12.0) -
配列 ary の末尾に item を追加します。
...配列 ary の末尾に item を追加します。
対応するRubyコード
ary.push(item) または
ary << item
使用例
VALUE ary = rb_ary_new();
char line[4096];
while ((gets(line)) != NULL){
item = process_apache_log(line);
rb_ary_push(ary, item);
}...