#![warn(missing_docs)]
pub mod coalesce;
pub mod core;
pub mod minimal;
pub use crate::core::{
generate_span_candidates, Animacy, Confidence, CorefChain, CorefDocument, CoreferenceResolver,
Corpus, DiscontinuousSpan, Entity, EntityBuilder, EntityCategory, EntityType, ExtractionMethod,
Gender, GroundedDocument, HashMapLexicon, HierarchicalConfidence, Identity, IdentityId,
IdentitySource, Lexicon, Location, Mention, MentionType, Modality, Number, Person, PhiFeatures,
Provenance, Quantifier, RaggedBatch, Relation, Signal, SignalId, SignalRef, Span,
SpanCandidate, Track, TrackId, TrackRef, TrackStats, TypeLabel, TypeMapper, ValidationIssue,
};
pub use crate::core::types::{ByteOffset, CharOffset};
pub use crate::core::types::CanonicalId;
pub use crate::core::grounded::SignalValidationError;
#[cfg(test)]
mod reexport_tests {
#[test]
fn signal_validation_error_is_reachable_at_crate_root() {
fn _takes_err(_: crate::SignalValidationError) {}
let err = crate::SignalValidationError::OutOfBounds {
signal_id: crate::SignalId::ZERO,
end: 5,
text_len: 3,
};
_takes_err(err);
}
}