(i int)
| 17 | type Arguments []string |
| 18 | |
| 19 | func (a Arguments) At(i int) string { |
| 20 | if i < 0 || len(a) <= i { |
| 21 | return "" |
| 22 | } |
| 23 | return a[i] |
| 24 | } |
| 25 | |
| 26 | func (a Arguments) Fallback(i int, fb string) string { |
| 27 | if i < 0 || len(a) <= i { |
nothing calls this directly
no outgoing calls
no test coverage detected