Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for breadthFirstTraversal (0.06 sec)

  1. guava/src/com/google/common/collect/TreeTraverser.java

       *
       * @deprecated Use {@link com.google.common.graph.Traverser#breadthFirst} instead, which has the
       *     same behavior.
       */
      @Deprecated
      public final FluentIterable<T> breadthFirstTraversal(T root) {
        checkNotNull(root);
        return new FluentIterable<T>() {
          @Override
          public UnmodifiableIterator<T> iterator() {
            return new BreadthFirstIterator(root);
          }
        };
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeTraverser.java

       *
       * @deprecated Use {@link com.google.common.graph.Traverser#breadthFirst} instead, which has the
       *     same behavior.
       */
      @Deprecated
      public final FluentIterable<T> breadthFirstTraversal(T root) {
        checkNotNull(root);
        return new FluentIterable<T>() {
          @Override
          public UnmodifiableIterator<T> iterator() {
            return new BreadthFirstIterator(root);
          }
        };
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top