Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
std Namespace Reference

Namespaces

namespace  tr1
 

Classes

struct  hash< fc::array< T, N > >
 
struct  hash< fc::crypto::signature >
 
struct  hash< fc::ip::endpoint >
 
struct  hash< fc::ripemd160 >
 
struct  hash< fc::sha1 >
 
struct  hash< fc::sha224 >
 
struct  hash< fc::sha256 >
 
struct  hash< fc::sha3 >
 
struct  hash< fc::signed_int >
 
struct  hash< fc::uint128 >
 
struct  hash< fc::unsigned_int >
 
struct  hash< sysio::chain::eosvmoc::code_tuple >
 
struct  hash< sysio::chain::name >
 
struct  less< permission_info::cref >
 
struct  less< weighted< T > >
 

Functions

std::ostream & operator<< (std::ostream &st, const std::variant< fc::alt_bn128_error, bytes > &err)
 
std::ostream & operator<< (std::ostream &st, const std::variant< fc::alt_bn128_error, bool > &err)
 
std::ostream & operator<< (std::ostream &st, const std::variant< fc::blake2b_error, bytes > &err)
 
std::ostream & operator<< (std::ostream &st, const std::variant< fc::k1_recover_error, bytes > &err)
 
std::ostream & operator<< (std::ostream &st, const std::variant< fc::modular_arithmetic_error, bytes > &err)
 
template<>
void swap (picojson::value &x, picojson::value &y)
 
ostream & operator<< (ostream &os, const pair< string, string > &entry)
 
template<typename T , size_t S>
std::ostream & operator<< (std::ostream &os, const std::array< T, S > &array)
 

Function Documentation

◆ operator<<() [1/7]

ostream & std::operator<< ( ostream & os,
const pair< string, string > & entry )

Definition at line 280 of file test_common.hpp.

280 {
281 os << entry.first + "=" + entry.second;
282 return os;
283 }
os_t os

◆ operator<<() [2/7]

template<typename T , size_t S>
std::ostream & std::operator<< ( std::ostream & os,
const std::array< T, S > & array )

Definition at line 96 of file test_compressed_file.cpp.

96 {
98 return os;
99 }
T data[N]
Definition array.hpp:37
#define T(meth, val, expected)

◆ operator<<() [3/7]

std::ostream & std::operator<< ( std::ostream & st,
const std::variant< fc::alt_bn128_error, bool > & err )

Definition at line 21 of file test_alt_bn128.cpp.

22{
23 if( std::holds_alternative<fc::alt_bn128_error>(err) )
24 st << static_cast<int32_t>(std::get<fc::alt_bn128_error>(err));
25 else
26 st << std::get<bool>(err);
27 return st;
28}

◆ operator<<() [4/7]

std::ostream & std::operator<< ( std::ostream & st,
const std::variant< fc::alt_bn128_error, bytes > & err )

Definition at line 12 of file test_alt_bn128.cpp.

13{
14 if( std::holds_alternative<fc::alt_bn128_error>(err) )
15 st << static_cast<int32_t>(std::get<fc::alt_bn128_error>(err));
16 else
17 st << fc::to_hex(std::get<bytes>(err));
18 return st;
19}

◆ operator<<() [5/7]

std::ostream & std::operator<< ( std::ostream & st,
const std::variant< fc::blake2b_error, bytes > & err )

Definition at line 14 of file test_blake2.cpp.

15{
16 if(std::holds_alternative<fc::blake2b_error>(err))
17 st << static_cast<int32_t>(std::get<fc::blake2b_error>(err));
18 else
19 st << fc::to_hex(std::get<bytes>(err));
20 return st;
21}

◆ operator<<() [6/7]

std::ostream & std::operator<< ( std::ostream & st,
const std::variant< fc::k1_recover_error, bytes > & err )

Definition at line 14 of file test_k1_recover.cpp.

15{
16 if(std::holds_alternative<fc::k1_recover_error>(err))
17 st << static_cast<int32_t>(std::get<fc::k1_recover_error>(err));
18 else
19 st << fc::to_hex(std::get<bytes>(err));
20 return st;
21}

◆ operator<<() [7/7]

std::ostream & std::operator<< ( std::ostream & st,
const std::variant< fc::modular_arithmetic_error, bytes > & err )

Definition at line 17 of file test_modular_arithmetic.cpp.

18{
19 if(std::holds_alternative<fc::modular_arithmetic_error>(err))
20 st << static_cast<int32_t>(std::get<fc::modular_arithmetic_error>(err));
21 else
22 st << fc::to_hex(std::get<bytes>(err));
23 return st;
24}

◆ swap()

template<>
void std::swap ( picojson::value & x,
picojson::value & y )
inline

Definition at line 1094 of file spec_test_generator.cpp.

1094 {
1095 x.swap(y);
1096}
void swap(value &x) PICOJSON_NOEXCEPT
Here is the call graph for this function:
Here is the caller graph for this function: