checkedint 0.7.0
Checked integer math types and operations.
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
This package provides sub packages which can be used individually:
checkedint:tests - Exhaustive tests for the checkedint package. Verifies correctness and measures performance.
Checked integer math module for the D Programming Language
As with many other languages (C, C++, Java, etc.), D's built-in integer data types are quite difficult to use correctly.
It is tempting to think of int
, for example, as if it were an actual mathematical integer. Doing so, however leads to buggy code due to unintuitive behaviour like:
- Wrapped overflow
- Reinterpretation of signed values as unsigned in mixed expressions
Floating Point Exception
s which aren'tException
s and have nothing to do with floating point- Formally "undefined behaviour" with some inputs for various operations
This checkedint
module provides alternative operations and types that protect the user from most difficulties of this sort, while maintaining good performance (provided that inlining and optimizations are enabled).
The main downsides to using checkedint
are:
- Some added friction when interfacing to non-
checkedint
-aware code. - Slower compilation and larger binaries.
Use dub build -b docs
to generate more extensive documentation for this package.
Installation
This library is available as a DUB package: http://code.dlang.org/packages/checkedint
- Registered by Thomas Stuart Bockman
- 0.7.0 released 4 years ago
- tsbockman/checkedint
- BSL-1.0
- Copyright © 2015, Thomas Stuart Bockman
- Authors:
- Sub packages:
- checkedint:tests
- Dependencies:
- none
- Versions:
-
0.7.0 2020-Apr-18 0.6.1 2020-Apr-18 0.6.0 2020-Apr-18 0.5.3 2016-Jun-09 0.5.2 2016-Jun-08 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
118 downloads total
-
- Score:
- 0.6
- Short URL:
- checkedint.dub.pm