type golang.org/x/sys/unix.FdSet

12 uses

	golang.org/x/sys/unix (current package)
		fdset.go#L10: func (fds *FdSet) Set(fd int) {
		fdset.go#L15: func (fds *FdSet) Clear(fd int) {
		fdset.go#L20: func (fds *FdSet) IsSet(fd int) bool {
		fdset.go#L25: func (fds *FdSet) Zero() {
		zsyscall_darwin_arm64.go#L1890: func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {
		ztypes_darwin_arm64.go#L291: type FdSet struct {

	src.elv.sh/pkg/sys
		fdset_unix.go#L11: var nFdBits = uint(8 * unsafe.Sizeof(unix.FdSet{}.Bits[0]))
		fdset_unix.go#L13: type FdSet unix.FdSet
		fdset_unix.go#L15: func (fs *FdSet) s() *unix.FdSet {
		fdset_unix.go#L16: 	return (*unix.FdSet)(fs)