1220件ヒット
[1201-1220件を表示]
(0.115秒)
ライブラリ
- ビルトイン (542)
- rss (672)
-
shell
/ command-processor (6)
クラス
- Array (215)
- Dir (38)
-
Enumerator
:: Lazy (51) -
RSS
:: ImageItemModel :: ImageItem (168) -
RSS
:: Maker :: ItemsBase (24) -
RSS
:: Maker :: ItemsBase :: ItemBase (84) -
RSS
:: Maker :: RSS20 :: Items :: Item :: Guid (48) -
RSS
:: RDF (36) -
RSS
:: RDF :: Channel (24) -
RSS
:: RDF :: Channel :: Items (12) -
RSS
:: RDF :: Item (120) -
RSS
:: Rss :: Channel :: Item (96) -
RSS
:: Rss :: Channel :: Item :: Category (24) -
RSS
:: Rss :: Channel :: Item :: Guid (12) -
Shell
:: CommandProcessor (6)
モジュール
- Enumerable (238)
-
RSS
:: ImageItemModel (24)
キーワード
- about (24)
- about= (24)
- any? (48)
- chunk (12)
- content (12)
- content= (12)
- date (48)
- date= (48)
- description (36)
- description= (36)
- detect (24)
-
do
_ sort (12) -
do
_ sort= (12) - domain (12)
- domain= (12)
-
drop
_ while (12) - each (24)
-
each
_ child (14) -
each
_ with _ index (24) - filter! (14)
- find (24)
-
find
_ all (36) -
find
_ index (36) - grep (12)
-
grep
_ v (10) - guid (24)
- guid= (12)
- height (12)
- height= (12)
-
image
_ height (12) -
image
_ height= (12) -
image
_ item (12) -
image
_ item= (12) -
image
_ width (12) -
image
_ width= (12) - index (36)
- inject (36)
- isPermaLink (24)
- isPermaLink= (12)
- item= (12)
- items (24)
- items= (12)
- join (6)
-
keep
_ if (24) - link (12)
- link= (12)
- none? (45)
- pubDate (24)
- pubDate= (24)
- reduce (36)
- resource (12)
- resource= (12)
- resources (12)
- rindex (36)
- select (15)
- select! (24)
- title (12)
- title= (12)
- width (12)
- width= (12)
検索結果
先頭3件
-
Enumerable
# none? -> bool (13.0) -
ブロックを指定しない場合は、 Enumerable オブジェクトのすべての 要素が偽であれば真を返します。そうでなければ偽を返します。
...要素に対して pattern === item を評価します。
//emlist[例][ruby]{
require 'set'
Set['ant', 'bear', 'cat'].none? {|word| word.length == 5} # => true
Set['ant', 'bear', 'cat'].none? {|word| word.length >= 4} # => false
Set['ant', 'bear', 'cat'].none?(/d/) # => tru... -
Enumerable
# none? {|obj| . . . } -> bool (13.0) -
ブロックを指定しない場合は、 Enumerable オブジェクトのすべての 要素が偽であれば真を返します。そうでなければ偽を返します。
...要素に対して pattern === item を評価します。
//emlist[例][ruby]{
require 'set'
Set['ant', 'bear', 'cat'].none? {|word| word.length == 5} # => true
Set['ant', 'bear', 'cat'].none? {|word| word.length >= 4} # => false
Set['ant', 'bear', 'cat'].none?(/d/) # => tru... -
Enumerable
# none?(pattern) -> bool (13.0) -
ブロックを指定しない場合は、 Enumerable オブジェクトのすべての 要素が偽であれば真を返します。そうでなければ偽を返します。
...要素に対して pattern === item を評価します。
//emlist[例][ruby]{
require 'set'
Set['ant', 'bear', 'cat'].none? {|word| word.length == 5} # => true
Set['ant', 'bear', 'cat'].none? {|word| word.length >= 4} # => false
Set['ant', 'bear', 'cat'].none?(/d/) # => tru...