Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Tbigv (0.12 sec)

  1. test/method5.go

    type Twordv uintptr
    
    func (v Twordv) M(x int, b byte) (byte, int) { return b, x+int(v) }
    
    type Twordp uintptr
    
    func (p *Twordp) M(x int, b byte) (byte, int) { return b, x+int(*p) }
    
    type Tbigv [2]uintptr
    
    func (v Tbigv) M(x int, b byte) (byte, int) { return b, x+int(v[0])+int(v[1]) }
    
    type Tbigp [2]uintptr
    
    func (p *Tbigp) M(x int, b byte) (byte, int) { return b, x+int(p[0])+int(p[1]) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 6.7K bytes
    - Viewed (0)
Back to top