Is it anything wrong just assigning string values to get rid of String() 
method attaching?

*Like this:*

type Weekday string

const (
  Sunday Weekday = "Sunday"
  Monday Weekday = "Monday"
)

func main() {
  fmt.Println(Sunday)
}



*Instead of this:*

type weekday uint

const (
  Sunday weekday = iota
  Monday
)

var weekdayNames = [...]string{"Sunday", "Monday"}

func (day weekday) String() string {
  return weekdayNames[day]
}


func main() {
  fmt.Println(Sunday)
}



Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to