mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-10 22:23:34 +00:00
22 lines
534 B
C++
22 lines
534 B
C++
#ifndef __MLX_FORMAT__
|
|
#define __MLX_FORMAT__
|
|
|
|
#include <type_traits>
|
|
#include <string_view>
|
|
|
|
namespace mlx
|
|
{
|
|
template<typename T, typename = void>
|
|
struct IsOstreamable : std::false_type {};
|
|
|
|
template<typename T>
|
|
struct IsOstreamable<T, std::void_t<decltype(std::declval<std::ostream>() << std::declval<T>())>> : std::true_type {};
|
|
|
|
template<typename... Args, std::enable_if_t<std::conjunction_v<IsOstreamable<Args>...>, int> = 0>
|
|
auto Format(std::string_view format, const Args&... args);
|
|
}
|
|
|
|
#include <Core/Format.inl>
|
|
|
|
#endif
|