This product is not supported for your selected Datadog site. ().
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: go-best-practices/mod-one-always-zero

Language: Go

Severity: Info

Category: Best Practices

Description

A modulus operation % with a constant value (1) on the variable foo and then checks if the result is equal to 0. Writing myVariable % 1 is equivalent to writing 0.

Non-Compliant Code Examples

func main() {
    v := foo % 1
}

Compliant Code Examples

func main() {
    v := foo % 2
}
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 Security

PREVIEWING: heston/DOCS-10466