From 574ab5ff9c0189f39207c553c259be534b20f79b Mon Sep 17 00:00:00 2001 From: Sylvio Sell Date: Sun, 27 Sep 2020 01:57:19 +0200 Subject: [PATCH] last fixes before releasing --- README.md | 6 +++--- haxelib.json | 12 ++++++++++++ 2 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 haxelib.json diff --git a/README.md b/README.md index eba92c0..f1ba43a 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 @@ -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) \ No newline at end of file +- make `&`, `|`, `^` bitwise operations with negative values more "two's complement"-compatible \ No newline at end of file diff --git a/haxelib.json b/haxelib.json new file mode 100644 index 0000000..4d96ded --- /dev/null +++ b/haxelib.json @@ -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": {} +} \ No newline at end of file