func maybeInt()
in
stats.go [53:58]
6
lines of code
2
McCabe index (conditional complexity)
func maybeInt(p *int) int { if p == nil { return 0 } return *p }