Crate ios_calculator
source ·Expand description
A simple iOS calculator implementation.
The functionality of the calculator is based on that of the iOS calculator and features:
- DMAS (division, muliplication, addition, subtraction) operations.
- Memory of last calculation.
- Percentage conversion.
Example
use ios_calculator::Calculator;
let calc = Calculator::new();
Structs
- A simple calulator.
- Represents a mathematical operator.