Lines Matching full:ts
18 template <level S = level::debug, details::any_but<std::source_location>... Ts>
25 * @param[in] ts - The rest of the arguments.
28 details::header_str_conversion_t<Ts&&>... ts) in log()
32 std::forward<details::header_str_conversion_t<Ts&&>>(ts)...); in log()
38 * @param[in] ts - The rest of the arguments.
42 const char* msg, details::header_str_conversion_t<Ts&&>... ts, in log()
44 log(s, msg, std::forward<details::header_str_conversion_t<Ts&&>>(ts)...) in log()
56 template <typename... Ts> \
57 struct levelval : public log<level::levelval, Ts...> \
59 using log<level::levelval, Ts...>::log; \
62 template <typename... Ts> \
63 explicit levelval(const char*, Ts&&...) -> levelval<Ts...>; \
65 template <typename... Ts> \
66 explicit levelval(const std::source_location&, const char*, Ts&&...) \
67 ->levelval<Ts...>