Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for horizon (0.12 seconds)

  1. android/guava/src/com/google/common/graph/Traverser.java

                  if (successors.hasNext()) {
                    // BFS: horizon.addLast(successors)
                    // Pre-order: horizon.addFirst(successors)
                    order.insertInto(horizon, successors);
                  }
                  return next;
                }
              } while (!horizon.isEmpty());
              return endOfData();
            }
          };
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 19.3K bytes
    - Click Count (0)
Back to Top