openGPMP
Open Source Mathematics Package
|
#include <algorithm>
#include <cmath>
#include <cstdint>
#include <cstring>
#include <fcntl.h>
#include <iomanip>
#include <iostream>
#include <mutex>
#include <openGPMP/core/datatable_wip.hpp>
#include <openGPMP/core/utils.hpp>
#include <regex>
#include <string>
#include <sys/mman.h>
#include <sys/stat.h>
#include <thread>
#include <typeinfo>
#include <unistd.h>
#include <unordered_set>
#include <variant>
#include <vector>
Go to the source code of this file.
Functions | |
bool | is_int (const std::string &str) |
bool | is_double (const std::string &str) |
void | handle_error (const char *msg) |
const char * | map_file (const char *fname, size_t &length) |
std::string | dt_to_str (gpmp::core::DataType type) |
Variables | |
static gpmp::core::Logger | _log_ |
std::string dt_to_str | ( | gpmp::core::DataType | type | ) |
Definition at line 341 of file datatable2.cpp.
References gpmp::core::dt_int64, gpmp::core::dt_ldouble, and gpmp::core::dt_str.
void handle_error | ( | const char * | msg | ) |
Definition at line 69 of file datatable2.cpp.
Referenced by map_file().
bool is_double | ( | const std::string & | str | ) |
Definition at line 65 of file datatable2.cpp.
bool is_int | ( | const std::string & | str | ) |
Definition at line 59 of file datatable2.cpp.
const char* map_file | ( | const char * | fname, |
size_t & | length | ||
) |
|
static |
Logger class object
Definition at line 54 of file datatable2.cpp.