Has reports whether f contains all (0 or more) flags in v.
(v Flags)
| 69 | |
| 70 | // Has reports whether f contains all (0 or more) flags in v. |
| 71 | func (f Flags) Has(v Flags) bool { |
| 72 | return (f & v) == v |
| 73 | } |
| 74 | |
| 75 | // Frame-specific FrameHeader flag bits. |
| 76 | const ( |
no outgoing calls