-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(397): Add min and max value helpers for builtin types
Fixes #397. Adding these helpers for computing multidimensional index bounds. Any unbounded or infinite dimensions need to be made finite by computing the min or max value for the type of said dimension. For example ``` a < 5 and b < 6 ``` needs to become ``` a >= MIN and a < 5 and b >= MIN and b < 5 ```
- Loading branch information
1 parent
b494bf4
commit 714ac21
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters