(arg any)
| 230 | } |
| 231 | |
| 232 | func String(arg any) any { |
| 233 | return fmt.Sprintf("%v", arg) |
| 234 | } |
| 235 | |
| 236 | func minMax(name string, fn func(any, any) bool, depth int, args ...any) (any, error) { |
| 237 | if depth > MaxDepth { |
nothing calls this directly
no test coverage detected
searching dependent graphs…