Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
cecb6d8
WIP: add std.experimental.checkedint
andralex Jul 18, 2016
e7be3c8
Add changes to winxx.mak too
andralex Jul 18, 2016
0033df3
Add dox for ProperCompare
andralex Jul 18, 2016
aeb6325
Review
andralex Jul 19, 2016
2ca8872
Review
andralex Aug 15, 2016
c9d9920
Rename representation to get; add function checked; improve documenta…
andralex Aug 18, 2016
157db49
Workaround bug in libdparse
andralex Aug 18, 2016
522077e
Add Saturate, change definition of onBadOpOpAssign
andralex Aug 19, 2016
ca95439
Add Mumble, improve documentation
andralex Aug 19, 2016
edca085
Small improvements to documentation
andralex Aug 19, 2016
0476878
Mumble -> Warn
andralex Aug 20, 2016
1a62d66
Simplify checked(), replace onBadOpOpAssign with more precise onLower…
andralex Aug 23, 2016
77bb316
Adding custom min and max to Checked
andralex Aug 25, 2016
d7a4ad9
Back to no custom min and max
andralex Aug 25, 2016
a09c5a7
Add const/immutable support
andralex Sep 15, 2016
53c9b8b
Review by JohanEngelen
andralex Sep 15, 2016
ca164a7
Add isNAN function, fix bug
andralex Sep 16, 2016
cde67f4
Increase coverage, fix bugs
andralex Sep 20, 2016
89df85c
Lil more coverage
andralex Sep 20, 2016
082b8b6
Add Throw hook, improve coverage, fix a few bugs
andralex Oct 19, 2016
0f75fc2
Fix copypasta in documentation
andralex Oct 20, 2016
30626d2
Improve coverage a bit more
andralex Oct 20, 2016
d3ddf0f
Improve docs spacing, remove spurious output in unittest
andralex Oct 21, 2016
5919487
Use std.math.isNaN instead of comparison to fix failures on Darwin
andralex Dec 12, 2016
4c9e050
Please the style checker although I shouldn't have to
andralex Dec 12, 2016
855bc64
Change index.d
andralex Dec 15, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions index.d
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ $(BOOKTABLE ,
$(TD Compress/decompress data using the zlib library.)
)
$(LEADINGROW Data integrity)
$(TR
$(TDNW $(LINK2 std_experimental_checkedint.html, std.experimental.checkedint))
$(TD Checked integral types.)
)
$(TR
$(TDNW $(LINK2 std_digest_crc.html, std.digest.crc))
$(TD Cyclic Redundancy Check (32-bit) implementation.)
Expand Down
2 changes: 1 addition & 1 deletion posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ PACKAGE_std = array ascii base64 bigint bitmanip compiler complex concurrency \
outbuffer parallelism path process random signals socket stdint \
stdio stdiobase string system traits typecons typetuple uni \
uri utf uuid variant xml zip zlib
PACKAGE_std_experimental = typecons
PACKAGE_std_experimental = checkedint typecons
PACKAGE_std_algorithm = comparison iteration mutation package searching setops \
sorting
PACKAGE_std_container = array binaryheap dlist package rbtree slist util
Expand Down
Loading