Determine if No More Menu Entries

I am trying to move a hard coded menu into an automatically generated menu for a theme I am modernizing a bit to use more built-in hugo stuff. It is a very basic menu with no children, I am looking for something like .Site.Menus.bottom.HasMenuNext. I am putting bullet points after each entry, but don’t want one at the end. I haven’t been able to guess or find what would work for simply checking if there is another entry in a certain menu name. Anyone have any ideas?

Something like this:

{{ range $i, $e := .Site.Menus.main }}{{ if $i }}* {{ end }}{{ $e.URL }}{{ end }}

The above works because 0 evaluates to false.