Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for new (0.02 sec)

  1. src/cmd/compile/internal/ssa/config.go

    	IntPtr     *types.Type
    	UintptrPtr *types.Type
    	Float32Ptr *types.Type
    	Float64Ptr *types.Type
    	BytePtrPtr *types.Type
    }
    
    // NewTypes creates and populates a Types.
    func NewTypes() *Types {
    	t := new(Types)
    	t.SetTypPtrs()
    	return t
    }
    
    // SetTypPtrs populates t.
    func (t *Types) SetTypPtrs() {
    	t.Bool = types.Types[types.TBOOL]
    	t.Int8 = types.Types[types.TINT8]
    	t.Int16 = types.Types[types.TINT16]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top