Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
Metadata
ID:ruby-best-practices/float-division
Language: Ruby
Severity: Notice
Category: Best Practices
Description
The rule requires the use of fdiv for division of two integers when the desired result is a float. This is important because in Ruby, the division of two integers results in an integer. The use of fdiv ensures the result is a float, which can be crucial when precision is required in the calculations.
Non-compliance to this rule can lead to inaccurate results due to integer division. For example, 5 / 2 would result in 2, not 2.5 as one might expect. To avoid this, it is recommended to use the fdiv method which ensures a float result. For example, calling 5.fdiv(2) would correctly return 2.5.
Remember, it’s important to understand the behavior of the language you’re using and to use its methods appropriately to ensure the accuracy of your calculations. In Ruby, when dealing with division and expecting a float result, use fdiv to avoid potential precision loss.
Non-Compliant Code Examples
foo.to_f/bar.to_f
Compliant Code Examples
foo.to_f/barfoo/bar.to_ffoo.fdiv(bar)
Seamless integrations. Try Datadog Code Analysis
Datadog Code Analysis
Try this rule and analyze your code with Datadog Code Analysis
How to use this rule
1
2
rulesets:- ruby-best-practices # Rules to enforce Ruby best practices.
Create a static-analysis.datadog.yml with the content above at the root of your repository
Use our free IDE Plugins or add Code Analysis scans to your CI pipelines