| 469 | constexpr bool isString() const { return idx == TypeIndex::String; } |
| 470 | constexpr bool isFixedString() const { return idx == TypeIndex::FixedString; } |
| 471 | constexpr bool isStringOrFixedString() const { return isString() || isFixedString(); } |
| 472 | |
| 473 | constexpr bool isUUID() const { return idx == TypeIndex::UUID; } |
| 474 | constexpr bool isIPv4() const { return idx == TypeIndex::IPv4; } |
no test coverage detected