I define an interface and a struct that implements that interface. I'm
storing pointers to these structs in a list but I can't access the
interface methods when I retrieve the pointers from the list.
As you can see in this example, I get the error
"e.Value.(*Updater).Update undefined (type *Updater has no field or
method Update)"
http://play.golang.org/p/DCEIOA7s-z
Any suggestions?
Cheers,
Ian