go/src/sort/example_interface_test.go

type Person

func (p Person) String() string {}

type ByAge

func (a ByAge) Len() int           {}

func (a ByAge) Swap(i, j int)      {}

func (a ByAge) Less(i, j int) bool {}

func Example() {}