ゴミ箱
|
Namespaces | |
base64 | |
sha1 | |
Typedefs | |
template<class Alloc > | |
using | allocator_traits = std::allocator_traits< Alloc > |
template<std::size_t... Ints> | |
using | index_sequence = integer_sequence< std::size_t, Ints... > |
template<class T , T N> | |
using | make_integer_sequence = typename integer_sequence_helper< T, N >::type |
template<std::size_t N> | |
using | make_index_sequence = make_integer_sequence< std::size_t, N > |
template<class... Args> | |
using | index_sequence_for = make_index_sequence< sizeof_workaround< Args... >::size > |
using | basic_streambuf_movable = std::is_move_constructible< basic_streambuf_movable_helper > |
template<class T > | |
using | is_input_iterator = std::integral_constant< bool,!std::is_integral< T >::value > |
template<class... Ts> | |
using | void_t = typename make_void< Ts... >::type |
using | ConstBufferSequence = BufferSequence< boost::asio::const_buffer > |
using | MutableBufferSequence = BufferSequence< boost::asio::mutable_buffer > |
using | ReadHandler = StreamHandler |
using | WriteHandler = StreamHandler |
Functions | |
template<class = void> | |
std::string | base64_encode (std::uint8_t const *data, std::size_t len) |
std::string | base64_encode (std::string const &s) |
template<class = void> | |
std::string | base64_decode (std::string const &data) |
template<class BufferSequence > | |
buffers_ref< BufferSequence > | make_buffers_ref (BufferSequence const &buffers) |
template<class U1 , class U2 , class U3 > | |
constexpr bool | sum_exceeds (U1 x, U2 y, U3 z) |
template<class Buffers > | |
std::ostream & | operator<< (std::ostream &os, buffers_helper< Buffers > const &v) |
template<class = void> | |
void | init (sha1_context &ctx) noexcept |
template<class = void> | |
void | update (sha1_context &ctx, void const *message, std::size_t size) noexcept |
template<class = void> | |
void | finish (sha1_context &ctx, void *digest) noexcept |
template<class CharT , class Traits > | |
int | lexicographical_compare (CharT const *s1, std::size_t n1, CharT const *s2, std::size_t n2) |
template<class CharT , class Traits > | |
int | lexicographical_compare (basic_string_view< CharT, Traits > s1, CharT const *s2, std::size_t n2) |
template<class CharT , class Traits > | |
int | lexicographical_compare (basic_string_view< CharT, Traits > s1, basic_string_view< CharT, Traits > s2) |
std::size_t constexpr | max_digits (std::size_t bytes) |
template<class CharT , class Integer , class Traits > | |
CharT * | raw_to_string (CharT *buf, Integer x, std::true_type) |
template<class CharT , class Integer , class Traits > | |
CharT * | raw_to_string (CharT *buf, Integer x, std::false_type) |
template<class CharT , class Integer , class Traits = std::char_traits<CharT>> | |
CharT * | raw_to_string (CharT *last, std::size_t size, Integer i) |
template<class T > | |
void | accept_rv (T) |
template<class U > | |
std::size_t constexpr | max_sizeof () |
template<class U0 , class U1 , class... Us> | |
std::size_t constexpr | max_sizeof () |
template<class U > | |
std::size_t constexpr | max_alignof () |
template<class U0 , class U1 , class... Us> | |
std::size_t constexpr | max_alignof () |
template<class R , class C , class... A> | |
auto | is_invocable_test (C &&c, int, A &&...a) -> decltype(std::is_convertible< decltype(c(std::forward< A >(a)...)), R >::value|| std::is_same< R, void >::value, std::true_type()) |
template<class R , class C , class... A> | |
std::false_type | is_invocable_test (C &&c, long, A &&...a) |
template<class U > | |
constexpr U | min_all (U u) |
template<class U0 , class U1 , class... UN> | |
constexpr unwidest_unsigned< U0, U1, UN... >::type | min_all (U0 u0, U1 u1, UN...un) |
template<class U > | |
constexpr U | max_all (U u) |
template<class U0 , class U1 , class... UN> | |
constexpr widest_unsigned< U0, U1, UN... >::type | max_all (U0 u0, U1 u1, UN...un) |
struct | std::declval< typename T::const_iterator & > () |
std::size_t | varint_size (std::size_t value) |
template<class FwdIt > | |
std::size_t | varint_read (FwdIt &first) |
template<class FwdIt > | |
void | varint_write (FwdIt &first, std::size_t value) |
boost::asio::const_buffer | buffer_prefix (std::size_t size, boost::asio::const_buffer buffer) |
boost::asio::mutable_buffer | buffer_prefix (std::size_t size, boost::asio::mutable_buffer buffer) |
int | file_posix_close (int fd) |
boost::detail::winapi::BOOL_ | set_file_pointer_ex (boost::detail::winapi::HANDLE_ hFile, boost::detail::winapi::LARGE_INTEGER_ lpDistanceToMove, boost::detail::winapi::PLARGE_INTEGER_ lpNewFilePointer, boost::detail::winapi::DWORD_ dwMoveMethod) |
template<class T > | |
struct | has_read_size_helper< T, decltype(read_size_helper(std::declval< T & > () |
template<class DynamicBuffer > | |
std::size_t | read_size (DynamicBuffer &buffer, std::size_t max_size, std::true_type) |
template<class DynamicBuffer > | |
std::size_t | read_size (DynamicBuffer &buffer, std::size_t max_size, std::false_type) |
template<class Integer > | |
static_string< max_digits(sizeof(Integer))> | to_static_string (Integer x, std::true_type) |
template<class Integer > | |
static_string< max_digits(sizeof(Integer))> | to_static_string (Integer x, std::false_type) |
char | ascii_tolower (char c) |
template<class = void> | |
bool | iequals (beast::string_view lhs, beast::string_view rhs) |
using boost::beast::detail::allocator_traits = typedef std::allocator_traits<Alloc> |
using boost::beast::detail::basic_streambuf_movable = typedef std::is_move_constructible<basic_streambuf_movable_helper> |
using boost::beast::detail::ConstBufferSequence = typedef BufferSequence<boost::asio::const_buffer> |
using boost::beast::detail::index_sequence = typedef integer_sequence<std::size_t, Ints...> |
using boost::beast::detail::index_sequence_for = typedef make_index_sequence<sizeof_workaround<Args...>::size> |
using boost::beast::detail::is_input_iterator = typedef std::integral_constant<bool, ! std::is_integral<T>::value> |
using boost::beast::detail::make_index_sequence = typedef make_integer_sequence<std::size_t, N> |
using boost::beast::detail::make_integer_sequence = typedef typename integer_sequence_helper<T, N>::type |
using boost::beast::detail::MutableBufferSequence = typedef BufferSequence<boost::asio::mutable_buffer> |
using boost::beast::detail::ReadHandler = typedef StreamHandler |
using boost::beast::detail::void_t = typedef typename make_void<Ts...>::type |
using boost::beast::detail::WriteHandler = typedef StreamHandler |
|
inline |
|
inline |
std::string boost::beast::detail::base64_decode | ( | std::string const & | data | ) |
std::string boost::beast::detail::base64_encode | ( | std::uint8_t const * | data, |
std::size_t | len | ||
) |
|
inline |
|
inline |
|
inline |
|
inline |
|
noexcept |
struct boost::beast::detail::has_read_size_helper< T, decltype(read_size_helper(std::declval< T & > | ( | ) |
bool boost::beast::detail::iequals | ( | beast::string_view | lhs, |
beast::string_view | rhs | ||
) |
|
noexcept |
auto boost::beast::detail::is_invocable_test | ( | C && | c, |
int | , | ||
A &&... | a | ||
) | -> decltype(std::is_convertible< decltype(c(std::forward< A >(a)...)), R >::value|| std::is_same< R, void >::value, std::true_type()) |
std::false_type boost::beast::detail::is_invocable_test | ( | C && | c, |
long | , | ||
A &&... | a | ||
) |
int boost::beast::detail::lexicographical_compare | ( | CharT const * | s1, |
std::size_t | n1, | ||
CharT const * | s2, | ||
std::size_t | n2 | ||
) |
|
inline |
|
inline |
buffers_ref<BufferSequence> boost::beast::detail::make_buffers_ref | ( | BufferSequence const & | buffers | ) |
std::size_t constexpr boost::beast::detail::max_alignof | ( | ) |
std::size_t constexpr boost::beast::detail::max_alignof | ( | ) |
|
inline |
|
inline |
|
inline |
std::size_t constexpr boost::beast::detail::max_sizeof | ( | ) |
std::size_t constexpr boost::beast::detail::max_sizeof | ( | ) |
|
inline |
|
inline |
std::ostream& boost::beast::detail::operator<< | ( | std::ostream & | os, |
buffers_helper< Buffers > const & | v | ||
) |
CharT* boost::beast::detail::raw_to_string | ( | CharT * | buf, |
Integer | x, | ||
std::true_type | |||
) |
CharT* boost::beast::detail::raw_to_string | ( | CharT * | buf, |
Integer | x, | ||
std::false_type | |||
) |
CharT* boost::beast::detail::raw_to_string | ( | CharT * | last, |
std::size_t | size, | ||
Integer | i | ||
) |
std::size_t boost::beast::detail::read_size | ( | DynamicBuffer & | buffer, |
std::size_t | max_size, | ||
std::true_type | |||
) |
std::size_t boost::beast::detail::read_size | ( | DynamicBuffer & | buffer, |
std::size_t | max_size, | ||
std::false_type | |||
) |
|
inline |
struct boost::beast::detail::std::declval< typename T::const_iterator & > | ( | ) |
constexpr bool boost::beast::detail::sum_exceeds | ( | U1 | x, |
U2 | y, | ||
U3 | z | ||
) |
static_string<max_digits(sizeof(Integer))> boost::beast::detail::to_static_string | ( | Integer | x, |
std::true_type | |||
) |
static_string<max_digits(sizeof(Integer))> boost::beast::detail::to_static_string | ( | Integer | x, |
std::false_type | |||
) |
|
noexcept |
std::size_t boost::beast::detail::varint_read | ( | FwdIt & | first | ) |
|
inline |
void boost::beast::detail::varint_write | ( | FwdIt & | first, |
std::size_t | value | ||
) |