19#include <bsoncxx/config/prelude.hpp>
22inline namespace v_noabi {
30template <
typename T,
typename U>
31BSONCXX_INLINE std::tuple<T&&, U&&> kvp(T&& t, U&& u) {
32 return std::tuple<T&&, U&&>(std::forward<T>(t), std::forward<U>(u));
40#include <bsoncxx/config/postlude.hpp>
The top-level namespace for bsoncxx library entities.
Definition element.hpp:24