Sha256: 23e9bfa023d241c0663a0e04c70adf5f71adbfa92bc4ec15c2dd58684ad36a66
Contents?: true
Size: 893 Bytes
Versions: 2
Compression:
Stored size: 893 Bytes
Contents
--- !ruby/object:RI::MethodDescription aliases: [] block_params: e comment: - !ruby/struct:SM::Flow::P body: Enumerable#none? is the logical opposite of the builtin method Enumerable#any?. It returns <tt>true</tt> if and only if <em>none</em> of the elements in the collection satisfy the predicate. - !ruby/struct:SM::Flow::P body: If no predicate is provided, Enumerable#none? returns <tt>true</tt> if and only if <em>none</em> of the elements have a true value (i.e. not <tt>nil</tt> or <tt>false</tt>). - !ruby/struct:SM::Flow::VERB body: " [].none? # true\n [nil].none? # true\n [5,8,9].none? # false\n (1...10).none? { |n| n < 0 } # true\n (1...10).none? { |n| n > 0 } # false\n\n CREDIT: Gavin Sinclair\n" full_name: Enumerable#none? is_singleton: false name: none? params: ( {|e| ...} visibility: public
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
facets-2.4.3 | doc/ri/Enumerable/none%3f-i.yaml |
facets-2.4.2 | doc/ri/Enumerable/none%3f-i.yaml |