internal static int ByTwo(int dividend) => DivideyBy(Two)(dividend);
 internal static int ByThree(int dividend) => DivideyBy(Three)(dividend);
 internal static int ByOne(int dividend) => DivideyBy(One)(dividend);