Tagged Questions

5
votes
4answers
4k views

Two's Complement in Python

Is there a built in function in python which will convert a binary string, for example '111111111111', to the two's complement integer -1?
0
votes
1answer
63 views

resizing a byte[] two's compliment repressented integer

Ok, I have a two's compliment representation of a number, in a byte array, and I want to expand it to use a larger byte array. (You can get two's compliment byte[] out of BigIntegers) So my new byte ...