Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for f1x (0.05 sec)

  1. test/typeparam/typelist.go

    func f0x() {
            f := f0[string]
            f("a", "b", "c", "d")
            f0("a", "b", "c", "d")
    }
    
    func f1[A any, B interface{type A}](A, B)
    func f1x() {
            f := f1[int]
            f(int(0), int(0))
            f1(int(0), int(0))
            f(0, 0)
            f1(0, 0)
    }
    */
    
    func f2[A any, B interface{ []A }](_ A, _ B) {}
    func f2x() {
    	f := f2[byte]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top