is_even_new 0.0.1
is_even_new: ^0.0.1 copied to clipboard
About This is a flutter package which tells you if a number is even or not by the help of bit masking.
is_even_new #
A lightweight, efficient Dart package that provides a simple utility function to check if a number is even. This package offers zero dependencies and optimized performance for all your even number checking needs.
Features #
- Fast determination if a number is even or odd
- Null safety compliant
- No external dependencies
Getting started #
Add is_even_new to your pubspec.yaml file:
dependencies:
is_even_new: ^0.0.1
Usage #
// Works with numeric strings
print(isEven(42)); // true
print(isEven(43)); // false