# `common`: ```c++ // get hash of any object std::size_t hash(auto&&... objs); // suppress unused variable warning void unused(auto&&...); // block forever void block_forever(); detail_::ExecResult exec ( std::filesystem::path program, std::vector args, std::optional stdin, std::map extra_env ); using int128_t = ...; using uint128_t = ...; struct CaseInsensitiveStringLessComparator {...}; // remove Class::* template using RemoveMemberPointer = ...; // move qualifiers (cvref) from From to To template using MoveQualifiers = ...; // get T::type or T::Type if exists, otherwise Fallback template using FallbackIfNoTypeDeclared ``` # `inline literals` ```c++ using namespace std::literals; using namespace fmt::literals; std::regex operator""_re(const char* str, std::size_t len); ``` # `inline stream_operators`: ```c++ inline namespace stream_operators { using namespace magic_enum::iostream_operators; } ``` # `env` ```c++ bool is_interactive(); std::optional env(std::string name); std::map env(); ```