Files
Emily Boudreaux ec13264050 feat(reflect-cpp): Switched from glaze -> reflect cpp
A bug was discovered in glaze which prevented valid toml output. We have
switched to toml++ and reflect-cpp. The interface has remained the same
so this should not break any code
2025-12-06 10:55:46 -05:00

19 lines
438 B
C++

#ifndef RFL_PARSING_TABULAR_MAKE_ARROW_SCHEMA_HPP_
#define RFL_PARSING_TABULAR_MAKE_ARROW_SCHEMA_HPP_
#include <type_traits>
#include "../../named_tuple_t.hpp"
#include "make_arrow_builders.hpp"
namespace rfl::parsing::tabular {
template <class T, SerializationType _s>
inline auto make_arrow_schema() {
return ArrowBuildersType<named_tuple_t<std::remove_cvref_t<T>>, _s>::schema();
}
} // namespace rfl::parsing::tabular
#endif