Omit parentheses if a lambda has no parameter

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: ruby-best-practices/lambda-no-parameter

Language: Ruby

Severity: Info

Category: Best Practices

Description

In Ruby, lambda is a function object that is created with the -> operator. The rule states that if a lambda function does not take any parameters, parentheses should be omitted. This is due to the Ruby style guide, which promotes cleaner and more readable code.

This rule is important because consistency in coding style makes the code easier to understand and maintain. Unnecessary parentheses can add clutter to the code and may lead to confusion. By omitting parentheses in lambdas with no parameters, the code becomes more streamlined and readable.

To adhere to this rule, write your lambda without parentheses if it doesn’t require any parameters. For example, instead of writing ->() { something }, you should write -> { something }. This makes it clear that the lambda takes no arguments, and helps maintain a consistent and clean coding style.

Non-Compliant Code Examples

l = ->() { something }

Compliant Code Examples

l = -> { something }
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis