| 275 | bool validateObjectName(std::string_view name, bool allowSpecialChars) noexcept; |
| 276 | bool validateUserNsName(std::string_view name) noexcept; |
| 277 | RX_ALWAYS_INLINE bool isSystemNamespaceNameFast(std::string_view name) noexcept { return !name.empty() && (name[0] == '#'); } |
| 278 | RX_ALWAYS_INLINE bool isSystemNamespaceNameFastReplication(std::string_view name) noexcept { |
| 279 | return !name.empty() && (name[0] == '#' || name[0] == '@' || name[0] == '!'); |
| 280 | } |
no test coverage detected