extprim_literals-2.0.3 doesn't have any documentation.
Literal macros for extprim.
This crate provides a syntex extension (on stable) so that the extprim types can be
constructed at compile-time using the i128!() and u128!() macros.
Setup
Simply add extprim_literals to dependencies in Cargo.toml:
[]
= "2.0"
Use the macros in src/consts.rs:
extern crate extprim_literals;
extern crate extprim;
use u128;
const TEN: u128 = u128!;
#