namespace mlir {
namespace index {
enum class IndexCmpPredicate : uint32_t { … };
::std::optional<IndexCmpPredicate> symbolizeIndexCmpPredicate(uint32_t);
::llvm::StringRef stringifyIndexCmpPredicate(IndexCmpPredicate);
::std::optional<IndexCmpPredicate> symbolizeIndexCmpPredicate(::llvm::StringRef);
inline constexpr unsigned getMaxEnumValForIndexCmpPredicate() { … }
inline ::llvm::StringRef stringifyEnum(IndexCmpPredicate enumValue) { … }
template <typename EnumType>
::std::optional<EnumType> symbolizeEnum(::llvm::StringRef);
template <>
inline ::std::optional<IndexCmpPredicate> symbolizeEnum<IndexCmpPredicate>(::llvm::StringRef str) { … }
}
}
namespace mlir {
template <typename T, typename>
struct FieldParser;
template<>
struct FieldParser<::mlir::index::IndexCmpPredicate, ::mlir::index::IndexCmpPredicate> { … };
}
namespace llvm {
inline ::llvm::raw_ostream &operator<<(::llvm::raw_ostream &p, ::mlir::index::IndexCmpPredicate value) { … }
}
namespace llvm {
template<> struct DenseMapInfo<::mlir::index::IndexCmpPredicate> { … };
}