Crate prime_checker

Crate prime_checker 

Source
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.