| 1222 | } |
| 1223 | |
| 1224 | type mergedStringIter struct { |
| 1225 | a index.StringIter |
| 1226 | b index.StringIter |
| 1227 | aok, bok bool |
| 1228 | cur string |
| 1229 | err error |
| 1230 | } |
| 1231 | |
| 1232 | func (m *mergedStringIter) Next() bool { |
| 1233 | if (!m.aok && !m.bok) || (m.Err() != nil) { |
nothing calls this directly
no outgoing calls
no test coverage detected