File: [pgFoundry] / varint / varint / Makefile (download)
Revision 1.1, Sun Sep 21 05:41:01 2008 UTC (23 months, 1 week ago) by jeremyd
Branch: MAIN
Initial commit of an arbitrary precision unsigned integer data type with
bitwise operators.
The following operators are implemented so far (not optimally, but I'm not
worried about that yet):
& (bitwise and)
| (bitwise or)
^ (bitwise xor)
<< (bitwise left shift)
>> (bitwise right shift)
+ (arithmetic add)
- (arithmetic subtract)
* (arithmetic multiply)
I plan to implement comparison operators and division next.
|