In Go, the built-in len() function returns the length of a slice, map, or string, and it never produces a negative value. The length of any data structure in Go is always a non-negative integer.
Hence, the condition len(mySlice) < 0 will always evaluate to false, and the code block within the if statement will never execute.
To fix this issue, you should remove the unnecessary check for len(mySlice) < 0:
Non-Compliant Code Examples
funcmain(){iflen(mySlice)<0{// never occurs
}}
Compliant Code Examples
funcmain(){iflen(mySlice)==0{}}
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:- go-best-practices # Rules to enforce Go 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