uint128_t icon indicating copy to clipboard operation
uint128_t copied to clipboard

uint128_t name usage

Open noloader opened this issue 2 years ago • 1 comments

I hope I am not splitting too many hairs, but the _t suffix is reserved for the language by the C standard. You should not use it for your type. I've always observed it in C++ programs, too.

You should probably put your type in a namespace, too. I can imagine what the collisions are going to look like.

noloader avatar Oct 14 '22 19:10 noloader

Normally, I would have placed the class in a namespace, but this was intended as a drop in replacement for uintX_t types, and I wanted it to look the same as using the standard built in types/

calccrypto avatar Oct 17 '22 02:10 calccrypto