548件ヒット
[201-300件を表示]
(0.073秒)
ライブラリ
- ビルトイン (199)
- csv (28)
- dbm (12)
- gdbm (12)
- matrix (26)
-
minitest
/ spec (1) -
minitest
/ unit (1) -
net
/ http (24) - pathname (18)
- pp (12)
- psych (12)
- rake (72)
-
rexml
/ document (24) -
rexml
/ parsers / pullparser (24) -
rubygems
/ package / tar _ header (12) - sdbm (12)
- set (9)
- strscan (24)
- thread (14)
- thwait (12)
クラス
- Array (16)
-
CSV
:: Row (12) -
CSV
:: Table (12) - DBM (12)
-
Encoding
:: Converter (60) - GDBM (12)
-
Gem
:: Package :: TarHeader (12) - Hash (12)
- Matrix (26)
-
Net
:: HTTP (24) - Object (13)
- Pathname (18)
-
Psych
:: Handler (12) -
REXML
:: Elements (12) -
REXML
:: Parsers :: PullParser (24) -
REXML
:: Text (12) -
Rake
:: InvocationChain (36) -
Rake
:: InvocationChain :: EmptyInvocationChain (36) - SDBM (12)
- Set (12)
- String (12)
- StringScanner (24)
- Symbol (12)
-
Thread
:: Queue (58) -
Thread
:: SizedQueue (44) - ThreadsWait (12)
モジュール
キーワード
- antisymmetric? (7)
- append (24)
-
assert
_ empty (1) - close (10)
-
close
_ on _ empty _ response (12) -
close
_ on _ empty _ response= (12) - deq (24)
- empty? (227)
- eos? (12)
-
has
_ next? (12) - member? (24)
-
must
_ be _ empty (1) -
next
_ wait (6) - pop (24)
-
pretty
_ print _ cycle (12) -
primitive
_ convert (48) -
primitive
_ errinfo (12) - shift (24)
-
skew
_ symmetric? (7) -
to
_ csv (4) -
to
_ s (24) - zero? (9)
検索結果
先頭5件
-
Gem
:: Package :: TarHeader # empty? -> bool (6102.0) -
ヘッダが "\0" で埋められている場合、真を返します。 そうでない場合は、偽を返します。
ヘッダが "\0" で埋められている場合、真を返します。
そうでない場合は、偽を返します。 -
REXML
:: Elements # empty? -> bool (6102.0) -
子要素を持たない場合に true を返します。
子要素を持たない場合に true を返します。 -
REXML
:: Parsers :: PullParser # empty? -> bool (6102.0) -
未処理のイベントが残っていない場合に真を返します。
未処理のイベントが残っていない場合に真を返します。
@see REXML::Parsers::PullParser#has_next? -
REXML
:: Text # empty? -> bool (6102.0) -
テキストが空ならば真を返します。
テキストが空ならば真を返します。 -
SDBM
# empty? -> bool (6102.0) -
データベースが空の時、真を返します。
データベースが空の時、真を返します。 -
Thread
:: SizedQueue # empty? -> bool (6102.0) -
キューが空の時、真を返します。
キューが空の時、真を返します。 -
StringScanner
# eos? -> bool (3008.0) -
スキャンポインタが文字列の末尾を指しているなら true を、 末尾以外を指しているなら false を返します。
...by]{
require 'strscan'
s = StringScanner.new('test string')
s.eos? # => false
s.scan(/\w+/)
s.scan(/\s+/)
s.scan(/\w+/)
s.eos? # => true
//}
StringScanner#empty? は将来のバージョンで削除される予定です。
代わりに StringScanner#eos? を使ってください。... -
Rake
:: InvocationChain :: EmptyInvocationChain # append(task _ name) -> Rake :: InvocationChain (3001.0) -
与えられた値を追加した Rake::InvocationChain を返します。
与えられた値を追加した Rake::InvocationChain を返します。
@param task_name 追加する値を指定します。 -
Rake
:: InvocationChain :: EmptyInvocationChain # member?(task _ name) -> bool (3001.0) -
偽を返します。
偽を返します。