| 74 | } |
| 75 | |
| 76 | bool IsFalse(const TStringBuf v) noexcept { |
| 77 | static constexpr std::array<TStringBuf, 7> falseOptions{ |
| 78 | "false", |
| 79 | "f", |
| 80 | "no", |
| 81 | "n", |
| 82 | "off", |
| 83 | "0", |
| 84 | "net"}; |
| 85 | return IsCaseInsensitiveAnyOf(v, falseOptions); |
| 86 | } |
no test coverage detected