String returns the string representation of a term.
()
| 39 | |
| 40 | // String returns the string representation of a term. |
| 41 | func (t term) String() string { |
| 42 | return fmt.Sprintf("term{typ: %d, inv: %v, text: []rune(%q), caseSensitive: %v}", t.typ, t.inv, string(t.text), t.caseSensitive) |
| 43 | } |
| 44 | |
| 45 | type termSet []term |
| 46 |
no outgoing calls