(ids: ElementId[])
| 152 | } |
| 153 | |
| 154 | public *getEdgesByIds(ids: ElementId[]): Iterable<StoredEdge> { |
| 155 | for (const id of ids) { |
| 156 | const edge = this.getEdgeById(id); |
| 157 | if (edge != null) { |
| 158 | yield edge; |
| 159 | } |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | public *getEdges(labels: string[]): Iterable<StoredEdge> { |
| 164 | if (labels.length === 0) { |
nothing calls this directly
no test coverage detected