lbug 0.16.1

An in-process property graph database management system built for query speed and scalability
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <cstdint>
#include <string>

namespace lbug {
namespace common {

enum class RelMultiplicity : uint8_t { MANY, ONE };

struct RelMultiplicityUtils {
    static RelMultiplicity getFwd(const std::string& str);
    static RelMultiplicity getBwd(const std::string& str);
    static std::string toString(RelMultiplicity multiplicity);
};

} // namespace common
} // namespace lbug