Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/link/internal/loader/loader.go

    func (l *Loader) IsReflectMethod(i Sym) bool {
    	return l.SymAttr(i)&goobj.SymFlagReflectMethod != 0
    }
    
    // Returns whether the i-th symbol is nosplit.
    func (l *Loader) IsNoSplit(i Sym) bool {
    	return l.SymAttr(i)&goobj.SymFlagNoSplit != 0
    }
    
    // Returns whether this is a Go type symbol.
    func (l *Loader) IsGoType(i Sym) bool {
    	return l.SymAttr(i)&goobj.SymFlagGoType != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top