[][src]Trait grdf::MutableGraph

pub trait MutableGraph<T = Term>: Graph<T> {
    fn insert(&mut self, triple: Triple<T>);
fn absorb<G: SizedGraph<T>>(&mut self, other: G); }

Mutable gRDF graph.

Required methods

fn insert(&mut self, triple: Triple<T>)

Insert the given triple into the graph.

fn absorb<G: SizedGraph<T>>(&mut self, other: G)

Absorb the given other graph.

Adds all the triples of other in the graph.

Loading content...

Implementors

impl<T: Hash + Eq> MutableGraph<T> for HashGraph<T>[src]

Loading content...