Used by the Iter & IterBuffered functions to wrap two variables together over a channel,
| 181 | |
| 182 | // Used by the Iter & IterBuffered functions to wrap two variables together over a channel, |
| 183 | type Tuple struct { |
| 184 | Key string |
| 185 | Val interface{} |
| 186 | } |
| 187 | |
| 188 | // Returns an iterator which could be used in a for range loop. |
| 189 | // |
nothing calls this directly
no outgoing calls
no test coverage detected