class
Ameba::Rule::Performance::FirstLastAfterFilter
Overview
This rule is used to identify usage of first/last/first?/last? calls that follow filters.
For example, this is considered inefficient:
[-1, 0, 1, 2].select { |e| e > 0 }.first?
[-1, 0, 1, 2].select { |e| e > 0 }.last?
And can be written as this:
[-1, 0, 1, 2].find { |e| e > 0 }
[-1, 0, 1, 2].reverse_each.find { |e| e > 0 }
YAML configuration example:
Performance/FirstLastAfterFilter
Enabled: true
FilterNames:
- select
Included Modules
- YAML::Serializable
- YAML::Serializable::Strict
Defined in:
ameba/rule/performance/first_last_after_filter.crConstant Summary
-
CALL_NAMES =
["first", "last", "first?", "last?"] of ::String -
MSG =
"Use `find {...}` instead of `%s {...}.%s`" -
MSG_REVERSE =
"Use `reverse_each.find {...}` instead of `%s {...}.%s`"
Constructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
-
.new(config = nil)
This rule is used to identify usage of
first/last/first?/last?calls that follow filters. - .new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node)
Instance Method Summary
- #description : String
- #description=(description : String)
- #enabled : Bool
- #enabled=(enabled : Bool)
- #excluded : Array(String) | Nil
- #excluded=(excluded : Array(String) | Nil)
- #filter_names : Array(String)
- #filter_names=(filter_names : Array(String))
- #severity : Ameba::Severity
- #severity=(severity : Ameba::Severity)
- #test(source, node : Crystal::Call)
- #test(source)
Instance methods inherited from class Ameba::Rule::Base
==(other)
==,
catch(source : Source)
catch,
excluded?(source)
excluded?,
group
group,
hash
hash,
name
name,
special?
special?,
test(source : Source, node : Crystal::ASTNode, *opts)test(source : Source) test
Class methods inherited from class Ameba::Rule::Base
parsed_doc
parsed_doc
Macros inherited from class 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 first/last/first?/last? calls that follow filters.
For example, this is considered inefficient:
[-1, 0, 1, 2].select { |e| e > 0 }.first?
[-1, 0, 1, 2].select { |e| e > 0 }.last?
And can be written as this:
[-1, 0, 1, 2].find { |e| e > 0 }
[-1, 0, 1, 2].reverse_each.find { |e| e > 0 }
YAML configuration example:
Performance/FirstLastAfterFilter
Enabled: true
FilterNames:
- select
def self.new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node)
#