(element string, data []string)
| 415 | } |
| 416 | |
| 417 | func indexOfString(element string, data []string) int { |
| 418 | |
| 419 | for k, v := range data { |
| 420 | if element == v { |
| 421 | return k |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | return -1 |
| 426 | } |
| 427 | |
| 428 | func indexOfFloat64(element float64, data []float64) int { |
| 429 |
no outgoing calls
no test coverage detected