Expand math.Pow calls

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

Metadata

ID: go-best-practices/math-pow-expanstion

Language: Go

Severity: Info

Category: Best Practices

Description

Simple operations such a math.Pow can be simplified. Simplification must be used when applicable.

Non-Compliant Code Examples

func main () {
    foo := math.Pow(x, 0)
    foo := math.Pow(x, 1)
    foo := math.Pow(x, 2)
    foo := math.Pow(x, 3)
    foo := math.Pow(x, 4)
    foo := math.Pow(x, 010)
}

Compliant Code Examples

func main () {
    foo := 1
    foo := x
    foo := x*x
    foo := x*x*x
    foo := math.Pow(x, 4)
    foo := math.Pow(x, 010)
}
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