HasFlags returns true iff all of the given flags are set in the formatter context.
(f FmtFlags)
| 482 | // HasFlags returns true iff all of the given flags are set in the formatter |
| 483 | // context. |
| 484 | func (ctx *FmtCtx) HasFlags(f FmtFlags) bool { |
| 485 | return ctx.flags.HasFlags(f) |
| 486 | } |
| 487 | |
| 488 | // HasAnyFlags returns true iff any of the given flags are set in the formatter |
| 489 | // context. |
no outgoing calls
no test coverage detected