struct Ameba::Rule::Performance::AnyAfterFilter

Overview

This rule is used to identify usage of any? calls that follow filters.

For example, this is considered invalid:

[1, 2, 3].select { |e| e > 2 }.any?
[1, 2, 3].reject { |e| e >= 2 }.any?

And it should be written as this:

[1, 2, 3].any? { |e| e > 2 }
[1, 2, 3].any? { |e| e < 2 }

YAML configuration example:

Performance/AnyAfterFilter:
  Enabled: true
  FilterNames:
    - select
    - reject

Defined in:

ameba/rule/performance/any_after_filter.cr

Constant Summary

ANY_NAME = "any?"
MSG = "Use `#{ANY_NAME} {...}` instead of `%s {...}.#{ANY_NAME}`"

Constructors

Instance Method Summary

Instance methods inherited from struct Ameba::Rule::Base

catch(source : Source) catch, excluded?(source) excluded?, group group, initialize initialize, name name, special? special?, test(source : Source, node : Crystal::ASTNode, *opts)
test(source : Source)
test

Constructor methods inherited from struct Ameba::Rule::Base

new new

Class methods inherited from struct Ameba::Rule::Base

parsed_doc parsed_doc

Macros inherited from struct Ameba::Rule::Base

issue_for(*args) issue_for

Macros inherited from module Ameba::Config::RuleConfig

properties(&block) properties

Constructor Detail

def self.new(config = nil) #

This rule is used to identify usage of any? calls that follow filters.

For example, this is considered invalid:

[1, 2, 3].select { |e| e > 2 }.any?
[1, 2, 3].reject { |e| e >= 2 }.any?

And it should be written as this:

[1, 2, 3].any? { |e| e > 2 }
[1, 2, 3].any? { |e| e < 2 }

YAML configuration example:

Performance/AnyAfterFilter:
  Enabled: true
  FilterNames:
    - select
    - reject

[View source]

Instance Method Detail

def test(source, node : Crystal::Call) #

[View source]
def test(source) #

[View source]