benwtrent commented on code in PR #11860: URL: https://github.com/apache/lucene/pull/11860#discussion_r1040218979
########## lucene/core/src/java/org/apache/lucene/util/hnsw/HnswGraph.java: ########## @@ -144,6 +145,10 @@ public NodesIterator(int size) { this.size = size; } + public int[] copy() { + return ArrayUtil.copyOfSubArray(nodes, 0, size); + } Review Comment: I added a "consume" method to this iterator. Seems to fit nicer to the iterator model. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org