ConditionalWrite is a stack containing a number of pending writes
| 4 | |
| 5 | // ConditionalWrite is a stack containing a number of pending writes |
| 6 | type ConditionalWrite struct { |
| 7 | Queued []string |
| 8 | } |
| 9 | |
| 10 | // Write will add a string to be written |
| 11 | func (w *ConditionalWrite) Write(s string) { |
nothing calls this directly
no outgoing calls
no test coverage detected