use std::collections::BTreeMap;
#[derive(Debug, Clone, PartialEq)]
pub struct TextStatistics {
pub letter_count: i64,
pub word_count: i64,
pub sentence_count: i64,
pub syllable_count: i64,
pub polysyllable_count: i64,
pub average_syllables_per_word: f64,
pub average_words_per_sentence: f64,
pub long_word_count: i64,
pub syllable_histogram: BTreeMap<i64, i64>,
}