(prefix, s string)
| 261 | } |
| 262 | |
| 263 | func isCaseInsensitivePrefix(prefix, s string) bool { |
| 264 | if len(prefix) > len(s) { |
| 265 | return false |
| 266 | } |
| 267 | return strings.EqualFold(prefix, s[:len(prefix)]) |
| 268 | } |
| 269 | |
| 270 | // ParseDBool parses and returns the *DBool Datum value represented by the provided |
| 271 | // string, or an error if parsing is unsuccessful. |
no outgoing calls
no test coverage detected
searching dependent graphs…