package melange-numeral

  1. Overview
  2. Docs
Melange bindings for Numeral

Install

Dune Dependency

Authors

Maintainers

Sources

melange-numeral-0.0.1.tbz
sha256=cd3606e151985d7f03cc2bae6fe1be990c8cf1f2af1e3d712f03e94b029026a8
sha512=7af281a5c1507d46562954ec979c553a9d9150fef7c66d5c3866f5b89eceae1989049fbf05d6824b30d1dbc88f4ead6bccec458b0d0b1ad53d923161c091ec62

README.md.html

melange-numeral

These are the Melange bindings for numeral. 🚧 It is not completed, we are adding bindings as we go. Doesn't follow semver at this point. 🚧

Install

Install opam package manager.

Then:

opam pin add melange-numeral.dev git+https://github.com/ahrefs/melange-numeral.git#master

The bindings support the version 2.0.6 of numeral npm package, which should be installed separately:

  "dependencies": {
    "numeral": "2.0.6"
  }

Setup

Add melange-numeral to the libraries in your dune file:

; ...
  (libraries melange-numeral)
; ...

Usage Example

module N = Numeral;

let myValue = N.make(`Str("11110.49"));
myValue
|. N.add(`Float(123.5))
|. N.subtract(`Int(1234))
|. N.format(~format="0[.]00", ())
|. Js.log; /* 9999.99 */

Docs

Check Numeral documentation

Alternatives

OCaml

Innovation. Community. Security.