(id int, slice []byte)
| 219 | } |
| 220 | |
| 221 | func lengthOfBytesOrString(id int, slice []byte) int { |
| 222 | if id == super.IDString { |
| 223 | return utf8.RuneCount(slice) |
| 224 | } |
| 225 | return len(slice) |
| 226 | } |
| 227 | |
| 228 | func sliceIsConstIndex(vec vector.Any) (int, bool) { |
| 229 | if vec == nil { |
no outgoing calls
no test coverage detected