Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for ToInterface (0.14 sec)

  1. src/cmd/compile/internal/types/type.go

    	Offset int64
    }
    
    const (
    	fieldIsDDD = 1 << iota // field is ... argument
    	fieldNointerface
    )
    
    func (f *Field) IsDDD() bool       { return f.flags&fieldIsDDD != 0 }
    func (f *Field) Nointerface() bool { return f.flags&fieldNointerface != 0 }
    
    func (f *Field) SetIsDDD(b bool)       { f.flags.set(fieldIsDDD, b) }
    func (f *Field) SetNointerface(b bool) { f.flags.set(fieldNointerface, b) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top