Documentation ¶ Index ¶ func Foo(a int) (float64, error) func Generated(a string) (bool, error) type MyContainer func (c *MyContainer) Name() string type NotGenerated type Point func (p *Point) Dist(p2 Point) float64 func (p Point) GeneratedMethod(a int32) *Point func (p *Point) GeneratedMethodOnPointer(a bool) *Point Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func Foo ¶ func Foo(a int) (float64, error) Foo ... func Generated ¶ func Generated(a string) (bool, error) Generated ... Types ¶ type MyContainer ¶ type MyContainer struct { // contains filtered or unexported fields } MyContainer ... func (*MyContainer) Name ¶ func (c *MyContainer) Name() string Name ... type NotGenerated ¶ type NotGenerated struct{} NotGenerated ... type Point ¶ type Point struct { X int Y int } Point ... func (*Point) Dist ¶ func (p *Point) Dist(p2 Point) float64 Dist ... func (Point) GeneratedMethod ¶ func (p Point) GeneratedMethod(a int32) *Point GeneratedMethod ... func (*Point) GeneratedMethodOnPointer ¶ func (p *Point) GeneratedMethodOnPointer(a bool) *Point GeneratedMethodOnPointer ... Source Files ¶ View all Source files foo.go Click to show internal directories. Click to hide internal directories.