るりまサーチ

最速Rubyリファレンスマニュアル検索!
325件ヒット [301-325件を表示] (0.015秒)
トップページ > クエリ:PTY[x] > 種類:インスタンスメソッド[x]

別のキーワード

  1. pty open
  2. pty spawn
  3. pty getpty
  4. pty check
  5. pty pty

検索結果

<< < ... 2 3 4 >>

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? を使ってください。...
<< < ... 2 3 4 >>