Skip to content

Commit

Permalink
last fixes before releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
maitag committed Sep 26, 2020
1 parent f69b981 commit 574ab5f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# littleBigInt
pure haxe implementation for arbitrary size integer
pure haxe implementation for [arbitrary-precision integer](https://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic)

This lib was designed and optimized for fast [Karatsuba](https://en.wikipedia.org/wiki/Karatsuba_algorithm) multiplicaton.
Works with haxe-version 3.4.4 and up. Tested on hashlink, cpp, neko and javascript targets.
Expand Down Expand Up @@ -194,7 +194,7 @@ Let me know if something's mising ~^

## Todo

- more into synopsis here
- `haxelib run` command for invoking hxp testscripts
- fixing output with leading zeros
- optional exponential notation for decimals
- optional great letters for hexadecimal output
Expand All @@ -204,4 +204,4 @@ Let me know if something's mising ~^
- optimizing with haxe.Int64 chunks
- targetspecific optimizations for the chunk-arrays

- make `&`, `|`, `^` bitwise operations working with negative numbers (two's complement compatible)
- make `&`, `|`, `^` bitwise operations with negative values more "two's complement"-compatible
12 changes: 12 additions & 0 deletions haxelib.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "littleBigInt",
"url": "https://github.com/maitag/littleBigInt",
"license": "MIT",
"tags": ["math", "arbitrary", "precision", "integer", "bigint"],
"description": "pure haxe implementation for arbitrary-precision integer",
"version": "0.1.0",
"classPath": "src/",
"releasenote": "coded once, runs everywhere ;)",
"contributors": ["maitag"],
"dependencies": {}
}

0 comments on commit 574ab5f

Please sign in to comment.