166件ヒット
[101-166件を表示]
(0.067秒)
ライブラリ
- ビルトイン (106)
- openssl (12)
-
rexml
/ document (36) -
rubygems
/ requirement (12)
クラス
- Array (42)
-
Gem
:: Requirement (12) -
OpenSSL
:: BN (12) -
REXML
:: Document (12) -
REXML
:: XMLDecl (24)
モジュール
- Enumerable (64)
キーワード
- none? (65)
-
stand
_ alone? (24) - standalone (12)
検索結果
先頭5件
-
Enumerable
# none? {|obj| . . . } -> bool (6101.0) -
ブロックを指定しない場合は、 Enumerable オブジェクトのすべての 要素が偽であれば真を返します。そうでなければ偽を返します。
...bear', 'cat'].none? {|word| word.length == 5} # => true
Set['ant', 'bear', 'cat'].none? {|word| word.length >= 4} # => false
Set[].none? # => true
Set[nil].none? # => true
Set[nil,false].none?......# => true
Set[nil, false, true].none? # => false
//}......, 'bear', 'cat'].none? {|word| word.length == 5} # => true
Set['ant', 'bear', 'cat'].none? {|word| word.length >= 4} # => false
Set['ant', 'bear', 'cat'].none?(/d/) # => true
Set[].none? # => true
Set[nil].none?......# => true
Set[nil,false].none? # => true
Set[nil, false, true].none? # => false
//}......# => true
Set[nil,false].none? # => true
Set[nil, false, true].none? # => false
//}
@see Array#none?... -
Enumerable
# none?(pattern) -> bool (6101.0) -
ブロックを指定しない場合は、 Enumerable オブジェクトのすべての 要素が偽であれば真を返します。そうでなければ偽を返します。
..., 'bear', 'cat'].none? {|word| word.length == 5} # => true
Set['ant', 'bear', 'cat'].none? {|word| word.length >= 4} # => false
Set['ant', 'bear', 'cat'].none?(/d/) # => true
Set[].none? # => true
Set[nil].none?......# => true
Set[nil,false].none? # => true
Set[nil, false, true].none? # => false
//}......# => true
Set[nil,false].none? # => true
Set[nil, false, true].none? # => false
//}
@see Array#none?... -
Gem
:: Requirement # none? -> bool (6101.0) -
自身が条件を持たない場合は、true を返します。
...自身が条件を持たない場合は、true を返します。
//emlist[][ruby]{
req = Gem::Requirement.new(">= 0")
p req.none? # => true
//}... -
REXML
:: Document # stand _ alone? -> String (6101.0) -
XML 宣言の standalone の値を文字列で返します。
...XML 宣言の standalone の値を文字列で返します。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<e />
EOS
doc.stand_alone? # => "yes"
//}... -
REXML
:: XMLDecl # stand _ alone? -> String | nil (6101.0) -
スタンドアロン文書であるかどうかを "yes" "no" で 返します。
スタンドアロン文書であるかどうかを "yes" "no" で
返します。
nil(省略)を返す場合もあります。 -
REXML
:: XMLDecl # standalone -> String | nil (3001.0) -
スタンドアロン文書であるかどうかを "yes" "no" で 返します。
スタンドアロン文書であるかどうかを "yes" "no" で
返します。
nil(省略)を返す場合もあります。