Boost.Redis 1.4.2
A redis client library
Loading...
Searching...
No Matches
ignore.hpp
1
2/* Copyright (c) 2018-2023 Marcelo Zimbres Silva (mzimbres@gmail.com)
3 *
4 * Distributed under the Boost Software License, Version 1.0. (See
5 * accompanying file LICENSE.txt)
6 */
7
8#ifndef BOOST_REDIS_IGNORE_HPP
9#define BOOST_REDIS_IGNORE_HPP
10
11#include <boost/system/result.hpp>
12
13#include <tuple>
14#include <type_traits>
15
16namespace boost::redis
17{
18
31using ignore_t = std::decay_t<decltype(std::ignore)>;
32
45extern ignore_t ignore;
46
47} // boost::redis
48
49#endif // BOOST_REDIS_IGNORE_HPP
ignore_t ignore
Global ignore object.
std::decay_t< decltype(std::ignore)> ignore_t
Type used to ignore responses.
Definition: ignore.hpp:31