Go to the source code of this file.
|
static void | smash::swrite (std::ofstream &stream, double x) |
| Write binary representation to stream. More...
|
|
static double | smash::sread_double (std::ifstream &stream) |
| Read binary representation of a double. More...
|
|
static void | smash::swrite (std::ofstream &stream, size_t x) |
| Write binary representation to stream. More...
|
|
static size_t | smash::sread_size (std::ifstream &stream) |
| Read binary representation of a size_t. More...
|
|
static void | smash::swrite (std::ofstream &stream, const std::vector< double > x) |
| Write binary representation to stream. More...
|
|
static std::vector< double > | smash::sread_vector (std::ifstream &stream) |
| Read binary representation of a vector of doubles. More...
|
|
static void | smash::swrite (std::ofstream &stream, sha256::Hash x) |
| Write binary representation to stream. More...
|
|
static sha256::Hash | smash::sread_hash (std::ifstream &stream) |
| Read binary representation of a SHA256 hash. More...
|
|