langdetect-rs 0.2.3

Language detection in Rust. Port of Mimino666's langdetect.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Utility modules for language detection.
//!
//! This module contains various utility functions and data structures
//! used throughout the language detection library.

/// Unicode block detection utilities.
pub mod unicode_block;
/// N-gram extraction and processing.
pub mod ngram;
/// Language profile data structures.
pub mod lang_profile;
/// Internationalization messages.
pub mod messages;