(s string, caseInsensitive bool)
| 5 | type RuneMap map[rune]*RuneTree |
| 6 | |
| 7 | func (this RuneMap) Lookup(s string, caseInsensitive bool) bool { |
| 8 | return this.lookup([]rune(s), caseInsensitive, 0) |
| 9 | } |
| 10 | |
| 11 | func (this RuneMap) lookup(runes []rune, caseInsensitive bool, depth int) bool { |
| 12 | if len(runes) == 0 { |