|
| template<typename T > |
| constexpr bool | has_bitwise_serialization () |
| |
| template<template< typename > class C, typename T > |
| constexpr bool | is_ranged_type (C< T >) |
| |
| template<typename R , typename C > |
| auto | member_pointer_type (R(C::*)) -> R |
| |
| template<typename R , typename C > |
| auto | member_pointer_class (R(C::*)) -> C |
| |
| template<typename... Args> |
| constexpr std::size_t | total_bytes_size () |
| |
| template<std::size_t I, typename Arg , typename... Args> |
| void | const_pack_helper (std::string &s, Arg &&arg, Args &&... args) |
| |
| template<typename... Args> |
| std::string | const_pack (Args &&... args) |
| |
| template<typename Generator , std::size_t... Is> |
| constexpr auto | generate_array_helper (Generator &&g, std::index_sequence< Is... >) -> std::array< decltype(g(std::size_t{}, sizeof...(Is))), sizeof...(Is)> |
| |
| template<std::size_t N, typename Generator > |
| constexpr auto | generate_array (Generator &&g) |
| |
| template<typename T > |
| constexpr T | pow (T base, uint8_t exponent) |
| |
| template<typename T , T Base> |
| constexpr T | pow_generator (std::size_t i, std::size_t) |
| |