I have the function Strength()
:
func (g Group) Strength() (Name []Entity, err error)
I am trying to call this function and store the values in some variable like below:
for _,x := range f.Strength() {
...
}
But this is giving error:
multiple-value f.strength in single-value context