Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for provider (0.09 sec)

  1. doc/go_spec.html

    f1 := apply[[]int]             // type argument for S explicitly provided, type argument for E inferred
    f2 := apply[[]string, string]  // both type arguments explicitly provided
    
    var bytes []byte
    r := apply(bytes, func(byte) byte { … })  // both type arguments inferred from the function arguments
    </pre>
    
    <p>
    For a generic type, all type arguments must always be provided explicitly.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    // Read if needed) to return the provided err after all data has been
    // read.
    //
    // The error must be non-nil.
    func (p *http2pipe) CloseWithError(err error) { p.closeWithError(&p.err, err, nil) }
    
    // BreakWithError causes the next Read (waking up a current blocked
    // Read if needed) to return the provided err immediately, without
    // waiting for unread data.
    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