Crate character_frequency

Source
Expand description

§About

Multithreaded character frequency counter.

Counts the character frequencies in a text over multiple threads.

Enums§

CaseSense
CaseSense enables counting characters in a Case Sensitive way.

Functions§

character_frequencies
Counts the frequencies of chars from a string with as many threads as cpu’s.
character_frequencies_w_case
Same as character_frequences() but with Case Sensitivity
character_frequencies_with_n_threads
Counts the frequencies of chars from a string with the amount of threads specified.
character_frequencies_with_n_threads_w_case
same as character_frequencies_with_n_threads(), with Case Sensitivity
sequential_character_frequencies
sequential_character_frequencies_w_case
Example