IsSet returns true if and only if a custom output style is set.
()
| 58 | |
| 59 | // IsSet returns true if and only if a custom output style is set. |
| 60 | func (g *OutputGroup) IsSet() bool { |
| 61 | if g == nil { |
| 62 | return false |
| 63 | } |
| 64 | return g.Begin != "" || g.End != "" |
| 65 | } |
nothing calls this directly
no outgoing calls
no test coverage detected