Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SetUnderlying (0.65 sec)

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

    func (t *Type) Obj() Object {
    	return t.obj
    }
    
    // SetUnderlying sets the underlying type of an incomplete type (i.e. type whose kind
    // is currently TFORW). SetUnderlying automatically updates any types that were waiting
    // for this type to be completed.
    func (t *Type) SetUnderlying(underlying *Type) {
    	if underlying.kind == TFORW {
    		// This type isn't computed yet; when it is, update n.
    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