Skip to main content

strixonomy/
owl.rs

1//! Horned-OWL bridge, patch write-back, and Manchester syntax.
2
3pub use strixonomy_owl::{
4    all_entity_statement_ranges, apply_patches, apply_patches as apply_owl_patches,
5    apply_patches_to_text, apply_patches_to_text as apply_owl_patches_to_text, atomic_write,
6    bridge_ontology, class_expression_to_manchester, class_expression_to_turtle_fragment,
7    entity_block_range, entity_primary_block_range, expression_tree_json, load_from_quads,
8    load_owx_text, load_turtle_text, namespaces_for_text, parse_class_expression,
9    prefixes_from_turtle, short_name_from_iri, supports_horned_load, ApplyPatchResult, ByteRange,
10    ManchesterDiagnostic, ManchesterParseOutput, OwlBridgeResult, OwlError, PatchDiagnostic,
11    PatchEntityKind, PatchOp,
12};