325件ヒット
[301-325件を表示]
(0.015秒)
別のキーワード
ライブラリ
- ビルトイン (69)
- csv (24)
- dbm (12)
- gdbm (12)
- matrix (12)
-
minitest
/ spec (1) -
minitest
/ unit (1) -
net
/ http (24) - pathname (9)
- psych (12)
- pty (12)
- rake (36)
-
rexml
/ document (24) -
rexml
/ parsers / pullparser (12) -
rubygems
/ package / tar _ header (12) - sdbm (12)
- set (9)
- strscan (24)
- thread (2)
- thwait (6)
クラス
- Array (12)
-
CSV
:: Row (12) -
CSV
:: Table (12) - DBM (12)
- GDBM (12)
-
Gem
:: Package :: TarHeader (12) - Hash (12)
- Matrix (12)
-
Net
:: HTTP (24) - Object (1)
-
PTY
:: ChildExited (12) - Pathname (9)
-
Psych
:: Handler (12) -
REXML
:: Elements (12) -
REXML
:: Parsers :: PullParser (12) -
REXML
:: Text (12) -
Rake
:: InvocationChain :: EmptyInvocationChain (36) - SDBM (12)
- Set (12)
- String (12)
- StringScanner (24)
- Symbol (12)
-
Thread
:: Queue (12) -
Thread
:: SizedQueue (8) - ThreadsWait (6)
モジュール
キーワード
- append (12)
-
assert
_ empty (1) -
close
_ on _ empty _ response (12) -
close
_ on _ empty _ response= (12) - empty (12)
- empty? (227)
- eos? (12)
- member? (12)
-
must
_ be _ empty (1) - status (12)
-
to
_ s (12)
検索結果
先頭3件
-
Rake
:: InvocationChain :: EmptyInvocationChain # member?(task _ name) -> bool (3001.0) -
偽を返します。
偽を返します。 -
Rake
:: InvocationChain :: EmptyInvocationChain # to _ s -> String (3001.0) -
'TOP' という文字列を返します。
'TOP' という文字列を返します。 -
StringScanner
# eos? -> bool (3001.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? を使ってください。...
