이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

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 }
PREVIEWING: dgreen15/github-error-fix