/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Format.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maldavid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/03/27 17:11:09 by maldavid #+# #+# */ /* Updated: 2024/03/27 17:12:03 by maldavid ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef __MLX_FORMAT__ #define __MLX_FORMAT__ #include #include namespace mlx { template struct IsOstreamable : std::false_type {}; template struct IsOstreamable() << std::declval())>> : std::true_type {}; template...>, int> = 0> auto Format(std::string_view format, const Args&... args); } #include #endif