type io/fs.DirEntry

21 uses

	io/fs (current package)
		fs.go#L86: type DirEntry interface {
		fs.go#L129: 	ReadDir(n int) ([]DirEntry, error)
		readdir.go#L19: 	ReadDir(name string) ([]DirEntry, error)
		readdir.go#L28: func ReadDir(fsys FS, name string) ([]DirEntry, error) {
		readdir.go#L72: func FileInfoToDirEntry(info FileInfo) DirEntry {
		sub.go#L90: func (f *subFS) ReadDir(name string) ([]DirEntry, error) {
		walk.go#L62: type WalkDirFunc func(path string, d DirEntry, err error) error
		walk.go#L65: func walkDir(fsys FS, name string, d DirEntry, walkDirFn WalkDirFunc) error {

	crypto/x509
		root_unix.go#L86: func readUniqueDirectoryEntries(dir string) ([]fs.DirEntry, error) {
		root_unix.go#L102: func isSameDirSymlink(f fs.DirEntry, dir string) bool {

	embed
		embed.go#L228: 	_ fs.DirEntry = (*file)(nil)
		embed.go#L313: func (f FS) ReadDir(name string) ([]fs.DirEntry, error) {
		embed.go#L322: 	list := make([]fs.DirEntry, len(dir.files))
		embed.go#L397: func (d *openDir) ReadDir(count int) ([]fs.DirEntry, error) {
		embed.go#L408: 	list := make([]fs.DirEntry, n)

	go.pact.im/x/old/pgtxtar
		pgtxtar.go#L24: 	err := fs.WalkDir(fsys, ".", func(fpath string, d fs.DirEntry, err error) error {

	net/http
		fs.go#L122: type dirEntryDirs []fs.DirEntry
		fs.go#L784: func (f ioFile) ReadDir(count int) ([]fs.DirEntry, error) {

	os
		dir.go#L82: type DirEntry = fs.DirEntry

	path/filepath
		path.go#L385: func walkDir(path string, d fs.DirEntry, walkDirFn fs.WalkDirFunc) error {
		path.go#L515: func readDir(dirname string) ([]fs.DirEntry, error) {