len()
returns the number of elements in a slice or array.
Assuming whatever()
is the function you invoke, you can do something like:
r := whatever()
if len(r) > 0 {
// do what you want
}
or if you don’t need the items
if len(whatever()) > 0 {
// do what you want
}