mod blankid;
mod display;
pub mod generator;
mod grdf;
pub mod interpretation;
pub mod literal;
mod quad;
mod term;
mod triple;
pub mod vocabulary;
#[cfg(feature = "meta")]
pub mod meta;
pub use blankid::*;
pub use display::*;
pub use generator::Generator;
pub use grdf::*;
pub use interpretation::{
BlankIdInterpretation, BlankIdInterpretationMut, IdInterpretation, IdInterpretationMut,
Interpret, Interpretation, InterpretationMut, IriInterpretation, IriInterpretationMut,
LexicalIdInterpretation, LexicalIdInterpretationMut, LexicalTermInterpretation,
LexicalTermInterpretationMut, LiteralInterpretation, LiteralInterpretationMut,
ReverseBlankIdInterpretation, ReverseBlankIdInterpretationMut, ReverseIdInterpretation,
ReverseIriInterpretation, ReverseIriInterpretationMut, ReverseLiteralInterpretation,
ReverseLiteralInterpretationMut, ReverseTermInterpretation, ReverseTermInterpretationMut,
TermInterpretation, TermInterpretationMut,
};
use iref::Iri;
pub use literal::{
IntoLiteral, Literal, MapLiteral, RdfDisplayType, RdfDisplayTypeWithContext, TryExportLiteral,
TryExportLiteralType,
};
pub use quad::*;
pub use term::*;
pub use triple::*;
pub use vocabulary::{
BlankIdVocabulary, BlankIdVocabularyMut, ExportFromVocabulary, ExportRefFromVocabulary,
ExportedFromVocabulary, IndexVocabulary, InsertIntoVocabulary, InsertedIntoVocabulary,
IriVocabulary, IriVocabularyMut, LanguageTagVocabulary, LanguageTagVocabularyMut,
LiteralVocabulary, LiteralVocabularyMut, NoVocabulary, TryExportFromVocabulary, Vocabulary,
VocabularyMut,
};
pub const XSD_STRING: &Iri = static_iref::iri!("http://www.w3.org/2001/XMLSchema#string");
#[cfg(feature = "meta")]
pub use generator::MetaGenerator;