()
| 1560 | return true |
| 1561 | } |
| 1562 | func (m *TriNode) String() string { |
| 1563 | w := NewDefaultWriter() |
| 1564 | m.writeToString(w, false) |
| 1565 | return w.String() |
| 1566 | } |
| 1567 | func (m *TriNode) StringNegate() string { |
| 1568 | w := NewDefaultWriter() |
| 1569 | m.writeToString(w, true) |
nothing calls this directly
no test coverage detected