lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Reuben Thomas wrote:
> This release of my bitwise operations library fixes a bug reported and 
> patched by John Stiles, and some deficiencies in the build system.

Umm ...

| typedef uintmax_t Integer;
| typedef intmax_t UInteger;

Maybe it does the right thing, but the naming is a bit strange.

Oh, and you realize that converting doubles to/from unsigned
integers is _dead slow_ on many platforms (but not necessarily so
for signed integers).
   
--Mike