24#ifndef MYSQL_STRCONV_ENCODE_CONCAT_OBJECT_H
25#define MYSQL_STRCONV_ENCODE_CONCAT_OBJECT_H
39template <
class... Args_tp>
41 using Tuple_t = std::tuple<
const Args_tp &...>;
Definition: gtid_binary_format.h:41
Helper type that wraps the varargs of concat in a struct containing a tuple.
Definition: concat_object.h:40
Concat_object(const Args_tp &...args)
Construct a new Concat_object whose tuple elements are the given arguments.
Definition: concat_object.h:45
std::tuple< const Args_tp &... > Tuple_t
Definition: concat_object.h:41
Tuple_t m_args
Tuple holding objects to be concatenated.
Definition: concat_object.h:48