#unsigned-integer #addition #subtraction #u8 #range #u16 #u32

rotary-add

This crate adds a few simple methods to the three lowest unsigned integer types, u8, u16 and u32 to allow cyclical addition and subtraction around the same 0 to (limit - 1) range or from 1 to a limit

4 releases

0.1.3 Mar 20, 2024
0.1.2 Mar 20, 2024
0.1.1 Mar 17, 2024
0.1.0 Mar 16, 2024

#199 in Math

Download history 406/week @ 2024-03-15 37/week @ 2024-03-22 25/week @ 2024-03-29

468 downloads per month

GPL-2.0-or-later WITH Bison-exception-2…

11KB
100 lines

mirror crates.io docs.rs

RotaryAdd: Cyclical arithemtic with unsigned integers

This crate provides 2 traits, RotaryAdd and CyccleAdd, with simple methods to apply cyclical or modular addition and subtraction with three unsigned integer types, u8, u16 and u32. Unlike the default + and - operators, additions and subtractions never overflow.

RotaryAdd

This trait has addition and subtraction methods that act on the whole range of an unsigned integer, e.g. from 0 to 255 for u8 or from 0 to 65535 for u16. This example with an 8-bit unsigned integer illustrates the concept with the rotary_add and rotary_sub methods:

Addition:

let first_number: u8 = 255;
let second_number: u8 = 6;

let result = first_number.rotary_add(&second_number);
// yields 5. first_number + second_number would panic as the value would overflow

Subtraction

let first_number: u8 = 3;
let second_number: u8 = 6;
let result = first_number.rotary_sub(&second_number);
// yields 253. first_number - second_number would panic as the value would overflow

CycleAdd

This trait provides addition and subtraction methods that let you define a custom cyclic base.

These examples show the concept:

Addition:

let first_number: u8 = 22;
let second_number: u8 = 6;

let result = first_number.cycle_add(&second_number, 24);
// yields 4. We have to use u8 as a primitive data type, but

Subtraction

let first_number: u8 = 37;
let second_number: u8 = 78;
let result = first_number.cycle_sub(&second_number, 100);
// yields 59. first_number - second_number would panic as the value would overflow

Serial addition, subtraction and modulus, starting from 1

Many common series start from one. The days of the month and week are commonly expressed with the numerals 1 to the maximum. Alas this does not work with modular arithmetic where additions or subtractions overflow. If 1 means Monday and 7 means Sunday, we'd expect 2 (Tue) - 3 to equal 7 (Sun) and 6 (Sat) + 1 to equal 7 (Sun). Instead we need to subtract one from the input number, that may be no lower than 1, mod it by the maximum number and then add 1 to the result. The series_add(), series_sub() and series_mod() methods avoid the need for these conversions when dealing with 1-based serial inputs.

let sample_month_1: u8 = 11;
let limit = 12; // months of the year
let result = sample_month_1.series_add(1, limit);
// yields 12. 
let sample_month_2: u8 = 3;
let result = sample_month_2.series_sub(3, limit);
// yields 12

let sample_month_value: u8 = 24; // 24th month
let result = sample_month_value.series_mod(limit);
// yields 12, but would yield 0 with 0-indexed modulus

Unlike the related Ring360 crate, this library only extends core unsigned integer types for use with cryptography and as a building block for other crates, e.g. converting characters first to u32 values and then shifting their values in one direction in the encoding stage and reversing the process in the decoding stage.

Dev notes

This is an alpha release.

0.1.2

  • Added series_add(), series_sub(), series_mod() methods.

No runtime deps