generated from PlexSheep/rs-base
numf_parser panics with usize
/ does not compile with usize
#22
Labels
No Label
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
1 Participants
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: PlexSheep/numf#22
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
limitation in libpt, will need to fix upstream
We have a test testing for this (
parser_generics
), but it does not test forusize
.usize
is the only affected unsigned int.numf_parser only uses u128 despite generic, panics with other typesto numf_parser panics with `usize` / does not compile with `usize`This makes sense, as
usize
is guaranteed to be at least a 16 bit unsigned integer, but has no guaranteed max value. THerefore, in the future it could be larger thanu128
(on 256-bit systems.).usize
is the size of a pointer on the OS.