Func is the type of the function to memoize.
func(string) (interface{}, error)
| 11 | |
| 12 | // Func is the type of the function to memoize. |
| 13 | type Func func(string) (interface{}, error) |
| 14 | |
| 15 | type result struct { |
| 16 | value interface{} |
nothing calls this directly
no outgoing calls
no test coverage detected