strfry 0.1.0

randomize a string
Documentation
1
2
3
4
5
6
7
8
9
10
# Randomize a string

Randomizes the contents of string by randomly swapping characters in the string.
The result is an anagram of string.

```rust
use strfry::strfry;

let anagram = strfry("i am a weakish speller");
```