Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for iterare (0.15 sec)

  1. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

            "java.lang.CharSequence" to "kotlin.CharSequence",
            "java.lang.Number" to "kotlin.Number",
            "java.lang.Throwable" to "kotlin.Throwable",
            // Collections
            "java.util.Iterable" to "kotlin.collections.Iterable",
            "java.util.Iterator" to "kotlin.collections.Iterator",
            "java.util.ListIterator" to "kotlin.collections.ListIterator",
            "java.util.Collection" to "kotlin.collections.Collection",
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                for (Node node : source.getCommentText()) {
                    nodeStack.appendChild(node);
                }
                return true;
            }
        }
    
        private interface CommentSource {
            Iterable<? extends Node> getCommentText();
        }
    
        private static class NoOpCommentSource implements CommentSource {
            @Override
            public List<? extends Node> getCommentText() {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 29.3K bytes
    - Viewed (0)
Back to top