Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _Receiver (0.2 sec)

  1. doc/go_spec.html

    A method declaration binds an identifier, the <i>method name</i>, to a method,
    and associates the method with the receiver's <i>base type</i>.
    </p>
    
    <pre class="ebnf">
    MethodDecl = "func" Receiver MethodName Signature [ FunctionBody ] .
    Receiver   = Parameters .
    </pre>
    
    <p>
    The receiver is specified via an extra parameter section preceding the method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. ChangeLog.md

    - [`KT-65930`](https://youtrack.jetbrains.com/issue/KT-65930) AA: receiver type for `Int?::foo` misses nullability
    - [`KT-65914`](https://youtrack.jetbrains.com/issue/KT-65914) AA: receiver type for `this::foo` returns return type of the target callable
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    				argStart += 2 * int64(types.PtrSize)
    			}
    		}
    
    		// Set receiver (for interface calls).
    		if rcvr != nil {
    			callArgs = append(callArgs, rcvr)
    		}
    
    		// Write args.
    		t := n.Fun.Type()
    		args := n.Args
    
    		for _, p := range params.InParams() { // includes receiver for interface calls
    			ACArgs = append(ACArgs, p.Type)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    		}
    		if st == nil {
    			// "WINDOW_UPDATE can be sent by a peer that has sent a
    			// frame bearing the END_STREAM flag. This means that a
    			// receiver could receive a WINDOW_UPDATE frame on a "half
    			// closed (remote)" or "closed" stream. A receiver MUST
    			// NOT treat this as an error, see Section 5.1."
    			return nil
    		}
    		if !st.flow.add(int32(f.Increment)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top