type io/fs.DirEntry

19 uses

	io/fs (current package)
		format.go#L60: func FormatDirEntry(dir DirEntry) string {
		fs.go#L93: type DirEntry interface {
		fs.go#L137: 	ReadDir(n int) ([]DirEntry, error)
		readdir.go#L20: 	ReadDir(name string) ([]DirEntry, error)
		readdir.go#L29: func ReadDir(fsys FS, name string) ([]DirEntry, error) {
		readdir.go#L46: 	slices.SortFunc(list, func(a, b DirEntry) int {
		readdir.go#L79: 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 {

	go/build
		build.go#L194: func (ctxt *Context) readDir(path string) ([]fs.DirEntry, error) {
		build.go#L201: 		des := make([]fs.DirEntry, len(fis))

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

	os
		dir.go#L85: type DirEntry = fs.DirEntry
		dir.go#L153: 	return fs.WalkDir(fsys, ".", func(path string, d fs.DirEntry, err error) error {

	path/filepath
		path.go#L309: func walkDir(path string, d fs.DirEntry, walkDirFn fs.WalkDirFunc) error {