# IsOdd
A lightweight Rust library that provides an `IsOdd` trait to determine whether various types of numbers are odd. This library supports common numeric types such as integers and floating-point numbers.
---
## Features
- **Generic Trait Implementation👍**: Works seamlessly with various numeric types (`i32`, `u32`, `i64`, `u64`, ect.).
- **Simple and Intuitive🍃**: Provides an easy-to-use API with the `is_odd` method.
- **Blazingly Fast🚀**: Uses modular arithmetic for fast oddness checks.
---
## Installation
Add the following to your `Cargo.toml` file:
```toml
[dependencies]
isodd = "0.1.0"
```
Or with:
```
cargo install isodd
```