-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.in
More file actions
28 lines (19 loc) · 827 Bytes
/
README.in
File metadata and controls
28 lines (19 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
## junsigned
Functions to convert unsigned int/long values to/from float/double values.
## Features
* Functions to convert unsigned int/long values to/from float/double values.
* Unsigned modulus implementations.
* Unsigned variants of [jranges](https://www.github.com/io7m-com/jranges) functions and types.
* High coverage test suite.
* [OSGi-ready](https://www.osgi.org/)
* [JPMS-ready](https://en.wikipedia.org/wiki/Java_Platform_Module_System)
* ISC license.
## Usage
Use the `UnsignedDouble` class to convert from various integer types to
`double` values.
Use the `UnsignedFloat` class to convert from various integer types to
`float` values.
Use the `UnsignedLong` class to perform unsigned modulus operations on `long`
values.
Use the `UnsignedInt` class to perform unsigned modulus operations on `int`
values.