rsword_chirho 0.2.1

Core SWORD module library in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// For God so loved the world that he gave his only begotten Son,
// that whoever believes in him should not perish but have eternal life.
// John 3:16

//! Lexicon and dictionary module implementations.
//!
//! Provides RawLD, RawLD4, zLD, and zLD4 module drivers.

mod raw_ld_chirho;
mod raw_ld4_chirho;
mod z_ld_chirho;
mod z_ld4_chirho;

pub use raw_ld_chirho::{RawLdChirho, RawLdIteratorChirho};
pub use raw_ld4_chirho::{RawLd4Chirho, RawLd4IteratorChirho};
pub use z_ld_chirho::{ZLdChirho, ZLdIteratorChirho};
pub use z_ld4_chirho::{ZLd4Chirho, ZLd4IteratorChirho};