Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsExported (0.09 sec)

  1. src/reflect/type.go

    	PkgPath string
    
    	Type  Type  // method type
    	Func  Value // func with receiver as first argument
    	Index int   // index for Type.Method
    }
    
    // IsExported reports whether the method is exported.
    func (m Method) IsExported() bool {
    	return m.PkgPath == ""
    }
    
    // String returns the name of k.
    func (k Kind) String() string {
    	if uint(k) < uint(len(kindNames)) {
    		return kindNames[uint(k)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top