//! An memory-based RDF graph.
//!
//! This module contains two implementations of `rome::graph::Graph`.
//! One is based on a 64 bit representation of triples and the other on a
//! 128 bit representation of the triples. To make sure that all triples fit,
//! it is recommended to use `Graph128`.
pub use ;
pub use ;
/// Implementation of `rome::graph::Graph` that stores triples in 64 bits.
pub type Graph64 = Graph;
/// Implementation of `rome::graph::Graph` that stores triples in 128 bits.
pub type Graph128 = Graph;
/// Implementation of `rome::graph::GraphCreator` that can create Graph64
/// and Graph128.
pub type GraphCreator<A, B> = GraphCreator;