`getParameterAsIntegerList` parses values as unsigned integers
See original GitHub issueDescription
The getParameterAsIntegerList
method parses values as unsigned integers instead of signed integers.
On the other hand, getParameterValueAsInt
uses the Integer.parseInt
method as one might expect.
I would expect getParameterAsIntegerList
to parse values as signed integers like getParameterValueAsInt
does, or for getParameterValueAsInt
to parse values as unsigned integers.
This is a super minor issue, as getParameterAsIntegerList
is not even used yet.
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Unsigned Integer Parsers (uint_, etc.) - Boost C++ Libraries
The uint_parser can parse unsigned integers of arbitrary length and size. ... Numeric literal, any unsigned integer value, or a Lazy Argument that...
Read more >How to convert signed to unsigned integer in python
You can use mathematical operations to compute a new int representing the value you would get in C, but there is no "unsigned...
Read more >Signed and Unsigned Integers - IBM
The XDR standard defines signed integers as integer. A signed integer is a 32-bit datum that encodes an integer in the range [-2147483648...
Read more >Unsigned Integer Parsers (uint_, etc.)
The uint_parser can parse unsigned integers of arbitrary length and size. ... Numeric literal, any unsigned integer value, or a Lazy Argument that...
Read more >Bug when converting Uuid to String and vice versa #62 - GitHub
Parsing needs to parse the unsigned integer and convert and store the bit pattern correctly in a signed integer.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks for raising these. It’s on our list to review.
@rolfyone Thank you making this change. This is fine with me.