soundex 0.2.0

Soundex Calculations
Documentation
# Rust Soundex Implementation

Performs Soundex calculation on a string passed in

## Examples

```rust
use soundex;
let code: String = soundex::american_soundex("Sirname".to_string());
```