Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for applyIf (0.63 sec)

  1. doc/go_spec.html

    </p>
    
    <pre>
    func apply[S ~[]E, E any](s S, f func(E) E) S { … }
    
    f0 := apply[]                  // illegal: type argument list cannot be empty
    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
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top