| 194 | } |
| 195 | |
| 196 | type vertexIterableHelper struct { |
| 197 | iterFunc func() <-chan VertexId |
| 198 | } |
| 199 | |
| 200 | func (helper *vertexIterableHelper) VerticesIter() <-chan VertexId { |
| 201 | return helper.iterFunc() |
nothing calls this directly
no outgoing calls
no test coverage detected