Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for t5 (0.18 sec)

  1. doc/go_spec.html

    	T3 [10]T4                 // T3 contains T3 as component of a struct in T4
    	T4 struct{ f T3 }         // T4 contains T4 as component of array T3 in a struct
    )
    
    // valid array types
    type (
    	T5 [10]*T5                // T5 contains T5 as component of a pointer
    	T6 [10]func() T6          // T6 contains T6 as component of a function type
    	T7 [10]struct{ f []T7 }   // T7 contains T7 as component of a slice in a struct
    )
    </pre>
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    </p>
    
    <pre>
    A0, A1, and []string
    A2 and struct{ a, b int }
    A3 and int
    A4, func(int, float64) *[]string, and A5
    
    B0 and C0
    []int and []int
    struct{ a, b *T5 } and struct{ a, b *T5 }
    func(x int, y float64) *[]string, func(int, float64) (result *[]string), and A5
    </pre>
    
    <p>
    <code>B0</code> and <code>B1</code> are different because they are new types
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/arch.go

    	register["S8"] = riscv.REG_S8
    	register["S9"] = riscv.REG_S9
    	register["S10"] = riscv.REG_S10
    	// Skip S11 as it is the g register.
    	register["T3"] = riscv.REG_T3
    	register["T4"] = riscv.REG_T4
    	register["T5"] = riscv.REG_T5
    	register["T6"] = riscv.REG_T6
    
    	// Go runtime register names.
    	register["g"] = riscv.REG_G
    	register["CTXT"] = riscv.REG_CTXT
    	register["TMP"] = riscv.REG_TMP
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
Back to top