Giter Club home page Giter Club logo

infinint's Introduction

infinint

A semi-infinite-precision integer type, implemented in Rust.

Examples

let a = Infinint::new();
assert_eq!(a.negative(), false);
assert_eq!(a.digits(), [0]);

let b = Infinint::from(123_456);
assert_eq!(b.digits(), [6, 5, 4, 3, 2, 1]);

Implementation

The Infinint struct contains two elements: a boolean to identify the integer as positive or negative, and a vector of bytes containing the decimal digits. Each byte in the vector holds data for two decimal digits: one in the upper nybble, and one in the lower. The decimal digits are stored in little-endian order.

For example, the decimal number 1998 would be stored as the following two bytes:

[1000_1001, 1001_0001]

which represent these decimal digit pairs:

[(8, 9), (9, 1)]

If the number of decimal digits is uneven, the lower nybble of the final byte will be 0. For example:

137 = [0111_0011, 0001_0000] = [(7, 3), (1, 0)]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.