Expand description
§About
Multithreaded character frequency counter.
Counts the character frequencies in a text over multiple threads.
Enums§
- Case
Sense - 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