func go/ast.IsExported
6 uses
go/ast (current package)
ast.go#L572: func IsExported(name string) bool { return token.IsExported(name) }
filter.go#L17: return IsExported(name)
print.go#L221: if name := t.Field(i).Name; IsExported(name) {
github.com/lann/builder
builder.go#L123: if ast.IsExported(name) {
builder.go#L204: if ast.IsExported(name) {
golang.org/x/pkgsite/internal/godoc
godoc.go#L82: if f.Name == nil || !ast.IsExported(f.Name.Name) {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |