(option byte)
| 76 | type Options byte |
| 77 | |
| 78 | func (o *Options) IsSet(option byte) bool { |
| 79 | return (byte(*o) & option) != 0 |
| 80 | } |
| 81 | |
| 82 | func (o *Options) Set(options ...byte) { |
| 83 | for _, option := range options { |
no outgoing calls
no test coverage detected