Not properly checking if a slice is empty

What is the clear and concise method for checking if a slice has any elements?

Mistake

This handles the nil slice, but does not work for a slice with zero elements

if slice == nil {
  return
}

Fix

if len(slice) == 0 {
  return
}

References