Expand description
Rust library crate to hold simple functions to check the prime-ness of a given unsigned, 64-bit integer.
Functionsยง
- description
- Prints a description of the crate to the console and returns the same.
- get_hcn
- Find all highly composite numbers until a given value
num. - get_
primes - Finds all the prime numbers till a given number.
- is_hcn
- Checks to see if a given number is a highly-composite (anti-prime) number.
- is_
prime - Checks to see if a given number is a prime number.