func()

in ctxtool/channel.go [61:68]


func (c chanContext) Err() error {
	select {
	case <-c:
		return context.Canceled
	default:
		return nil
	}
}