gnt-tools 0.1.0

This crate has been created in order to be a tool box for studying the greek new testament. The crate is provided AS-IS.
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented2 out of 2 items with examples
  • Size
  • Source code size: 7.6 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 173.43 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • kylak
gnt-tools-0.1.0 has been yanked.

This crate has been created in order to be a tool box for studying the greek new testament. The crate is provided AS-IS.

Examples

use gnt_tools::core_text;

let s = "16 Εἶπεν δὲ παραβολὴν πρὸς αὐτοὺς λέγων·
ἀνθρώπου τινὸς πλουσίου εὐφόρησεν ἡ χώρα. 17 
καὶ διελογίζετο ἐν ἑαυτῷ λέγων· τί ποιήσω, ὅτι 
οὐκ ἔχω ποῦ συνάξω τοὺς καρπούς μου; ";

let s2 = "ειπενδεπαραβοληνπροϲαυτουϲλεγωνανθρωπουτ\
ινοϲπλουϲιουευφορηϲενηχωρακαιδιελογιζετοενεαυτω\
λεγωντιποιηϲωοτιουκεχωπουϲυναξωτουϲκαρπουϲμου";

assert_eq!(core_text(String::from(s)), String::from(s2));