(a, b int64)
| 471 | } |
| 472 | |
| 473 | func min64(a, b int64) int64 { |
| 474 | if a < b { |
| 475 | return a |
| 476 | } |
| 477 | return b |
| 478 | } |
| 479 | |
| 480 | // escapeAllForDot applies escapeForDot to all strings in the given slice. |
| 481 | func escapeAllForDot(in []string) []string { |
no outgoing calls
no test coverage detected
searching dependent graphs…