Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for visitNext (0.04 seconds)

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

         *
         * <p>For example, if horizon is {@code [[a, b], [c, d], [e]]}, {@code visitNext()} will return
         * {@code [a, b, null, c, d, null, e, null]} sequentially, encoding the topological structure.
         * (Note, however, that the callers of {@code visitNext()} often insert additional iterators
         * into {@code horizon} between calls to {@code visitNext()}. This causes them to receive
         * additional values interleaved with those shown above.)
    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)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/LinkRenderer.java

            final Element linkElement = document.createElement("classname");
    
            type.visitSignature(new TypeMetaData.SignatureVisitor() {
                @Override
                public void visitText(String text) {
                    linkElement.appendChild(document.createTextNode(text));
                }
    
                @Override
                public void visitType(String name) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed May 21 06:20:45 GMT 2025
    - 6.3K bytes
    - Click Count (0)
Back to Top