()
| 11 | ) |
| 12 | |
| 13 | func ExamplePrintDuration() { |
| 14 | methods.Print(time.Hour) |
| 15 | // Output: |
| 16 | // type time.Duration |
| 17 | // func (time.Duration) Hours() float64 |
| 18 | // func (time.Duration) Minutes() float64 |
| 19 | // func (time.Duration) Nanoseconds() int64 |
| 20 | // func (time.Duration) Seconds() float64 |
| 21 | // func (time.Duration) String() string |
| 22 | } |
| 23 | |
| 24 | func ExamplePrintReplacer() { |
| 25 | methods.Print(new(strings.Replacer)) |