type io/fs.DirEntry

21 uses

	io/fs (current package)
		format.go#L60: func FormatDirEntry(dir DirEntry) string {
		fs.go#L86: type DirEntry interface {
		fs.go#L130: 	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#L76: func FileInfoToDirEntry(info FileInfo) DirEntry {
		sub.go#L90: func (f *subFS) ReadDir(name string) ([]DirEntry, error) {
		walk.go#L69: type WalkDirFunc func(path string, d DirEntry, err error) error
		walk.go#L72: 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#L317: func (f FS) ReadDir(name string) ([]fs.DirEntry, error) {
		embed.go#L326: 	list := make([]fs.DirEntry, len(dir.files))
		embed.go#L413: func (d *openDir) ReadDir(count int) ([]fs.DirEntry, error) {
		embed.go#L424: 	list := make([]fs.DirEntry, n)

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

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

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