IsVisible returns true if the flag is not hidden, otherwise false
()
| 178 | type VisibleFlag interface { |
| 179 | // IsVisible returns true if the flag is not hidden, otherwise false |
| 180 | IsVisible() bool |
| 181 | } |
| 182 | |
| 183 | // CategorizableFlag is an interface that allows us to potentially |
no outgoing calls