Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ChanArgs (0.07 sec)

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

    		return t.extra.(*Chan).Elem
    	case TMAP:
    		return t.extra.(*Map).Elem
    	}
    	base.Fatalf("Type.Elem %s", t.kind)
    	return nil
    }
    
    // ChanArgs returns the channel type for TCHANARGS type t.
    func (t *Type) ChanArgs() *Type {
    	t.wantEtype(TCHANARGS)
    	return t.extra.(ChanArgs).T
    }
    
    // FuncArgs returns the func type for TFUNCARGS type t.
    func (t *Type) FuncArgs() *Type {
    	t.wantEtype(TFUNCARGS)
    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