Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/canscale/lexicographic-encoding

Lexicographic integer encoding in Motoko
https://github.com/canscale/lexicographic-encoding

Last synced: about 1 month ago
JSON representation

Lexicographic integer encoding in Motoko

Awesome Lists containing this project

README

        

# lexicographic-encoding

A library for lexicographically encoding Integers

## Usage

```
import E "mo:encode/EncodeInt";

let x: Int = 256;
let encoded = E.encodeInt(x);
```

## Limitations

Currently this library is only able to reliably encode integers from **0** up to ~**1.7 * 10^13**, while maintaining equivalence with the JavaScript reference implementation in `reference/lexicographic-encoding.ts`

## Motivation

When converting numbers to strings, the same sort order is preserved. Lexicographic encodings of numbers preserve their sort order.

Additionally, this allows one to preserve sort order when associating number ids with strings, such as a user with id=256 becoming "user-fb05"