Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ReceiverType (0.05 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

            return groovyReceiverAccessors(Receiver::class)
        }
    
        private
        fun groovyReceiverAccessors(receiverType: KClass<*>): String {
            val objectMethods = Any::class.java.declaredMethods.toList()
            return receiverType
                .memberFunctions
                .asSequence()
                .mapNotNull { it.javaMethod }
                .filterNot { objectMethods.contains(it) }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Sun Jul 07 16:02:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. doc/go_spec.html

    with the same arguments as <code>M</code> prefixed by an additional
    argument that is the receiver of the method.
    </p>
    
    <pre class="ebnf">
    MethodExpr   = ReceiverType "." MethodName .
    ReceiverType = Type .
    </pre>
    
    <p>
    Consider a struct type <code>T</code> with two methods,
    <code>Mv</code>, whose receiver is of type <code>T</code>, and
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Dec 02 23:07:19 UTC 2025
    - 286.5K bytes
    - Viewed (1)
Back to top