Versions in this module Expand all Collapse all v1 v1.0.2 Feb 4, 2020 Changes in this version + type FDResultSets struct — darwin/amd64, linux/amd64 + func Select(rd, wr, er *FDSet, timeout time.Duration) (*FDResultSets, error) + func (r *FDResultSets) IsError(fd int) bool + func (r *FDResultSets) IsReadable(fd int) bool + func (r *FDResultSets) IsWritable(fd int) bool + type FDSet struct — darwin/amd64, linux/amd64 + func NewFDSet(fds ...int) *FDSet + func (s *FDSet) Add(fds ...int) + type Pipe struct — darwin/amd64, linux/amd64 + func (p *Pipe) Close() error + func (p *Pipe) Open() error + func (p *Pipe) Read(data []byte) (int, error) + func (p *Pipe) ReadFD() int + func (p *Pipe) Write(data []byte) (int, error) + func (p *Pipe) WriteFD() int