Flex
0.17.9
|
#include <assert.h>
#include <chrono>
#include <istream>
#include <ostream>
#include <vector>
#include <boost/date_time/posix_time/posix_time.hpp>
#include "grape/serialization/in_archive.h"
#include "grape/serialization/out_archive.h"
#include <yaml-cpp/yaml.h>
Go to the source code of this file.
Namespaces | |
grape | |
gs | |
gs::impl | |
gs::config_parsing | |
boost | |
std | |
YAML | |
Enumerations | |
enum class | gs::StorageStrategy { gs::kNone , gs::kMem , gs::kDisk } |
enum class | gs::impl::PropertyTypeImpl { gs::impl::kInt32 , gs::impl::kDate , gs::impl::kDay , gs::impl::kStringView , gs::impl::kEmpty , gs::impl::kInt64 , gs::impl::kDouble , gs::impl::kUInt32 , gs::impl::kUInt64 , gs::impl::kBool , gs::impl::kFloat , gs::impl::kUInt8 , gs::impl::kUInt16 , gs::impl::kStringMap , gs::impl::kVarChar , gs::impl::kVertexGlobalId , gs::impl::kLabel , gs::impl::kRecordView , gs::impl::kRecord , gs::impl::kString } |
Functions | |
bool | grape::operator< (const EmptyType &lhs, const EmptyType &rhs) |
std::string | gs::config_parsing::PrimitivePropertyTypeToString (PropertyType type) |
PropertyType | gs::config_parsing::StringToPrimitivePropertyType (const std::string &str) |
bool | gs::operator== (const GlobalId &lhs, const GlobalId &rhs) |
bool | gs::operator!= (const GlobalId &lhs, const GlobalId &rhs) |
bool | gs::operator< (const GlobalId &lhs, const GlobalId &rhs) |
bool | gs::operator> (const GlobalId &lhs, const GlobalId &rhs) |
template<> | |
struct | gs::__attribute__ ((packed)) ImmutableNbr< Date > |
Any | gs::ConvertStringToAny (const std::string &value, const gs::PropertyType &type) |
grape::InArchive & | gs::operator<< (grape::InArchive &in_archive, const PropertyType &value) |
grape::OutArchive & | gs::operator>> (grape::OutArchive &out_archive, PropertyType &value) |
grape::InArchive & | gs::operator<< (grape::InArchive &in_archive, const Any &value) |
grape::OutArchive & | gs::operator>> (grape::OutArchive &out_archive, Any &value) |
grape::InArchive & | gs::operator<< (grape::InArchive &in_archive, const std::string_view &str) |
grape::OutArchive & | gs::operator>> (grape::OutArchive &out_archive, std::string_view &str) |
grape::InArchive & | gs::operator<< (grape::InArchive &in_archive, const GlobalId &value) |
grape::OutArchive & | gs::operator>> (grape::OutArchive &out_archive, GlobalId &value) |
std::size_t | boost::hash_value (const grape::EmptyType &value) |
std::size_t | boost::hash_value (const gs::GlobalId &value) |
std::size_t | boost::hash_value (const gs::LabelKey &key) |
ostream & | std::operator<< (ostream &os, const gs::Date &dt) |
ostream & | std::operator<< (ostream &os, const gs::Day &dt) |
ostream & | std::operator<< (ostream &os, gs::PropertyType pt) |
bool | grape::operator== (const EmptyType &a, const EmptyType &b) |
bool | grape::operator!= (const EmptyType &a, const EmptyType &b) |
Variables | |
static constexpr const char * | gs::DT_UNSIGNED_INT8 = "DT_UNSIGNED_INT8" |
static constexpr const char * | gs::DT_UNSIGNED_INT16 = "DT_UNSIGNED_INT16" |
static constexpr const char * | gs::DT_SIGNED_INT32 = "DT_SIGNED_INT32" |
static constexpr const char * | gs::DT_UNSIGNED_INT32 = "DT_UNSIGNED_INT32" |
static constexpr const char * | gs::DT_SIGNED_INT64 = "DT_SIGNED_INT64" |
static constexpr const char * | gs::DT_UNSIGNED_INT64 = "DT_UNSIGNED_INT64" |
static constexpr const char * | gs::DT_BOOL = "DT_BOOL" |
static constexpr const char * | gs::DT_FLOAT = "DT_FLOAT" |
static constexpr const char * | gs::DT_DOUBLE = "DT_DOUBLE" |
static constexpr const char * | gs::DT_STRING = "DT_STRING" |
static constexpr const char * | gs::DT_STRINGMAP = "DT_STRINGMAP" |
static constexpr const char * | gs::DT_DATE = "DT_DATE32" |
static constexpr const char * | gs::DT_DAY = "DT_DAY32" |