Unable importing 0x00 number from a string
Importing a number from a string cause a little bug. For example, this works :
std::string a = {0x23, 0x65, 0x36, 0x75}; ael::LargeInt b(a); // b contain 0x75366523
And this works less :
std::string a = {0x23, 0x65, 0x00, 0x75} ael::LargeInt b(a); // b contain 0x6523 because 0x00 is considered as '\0'
Will be fixed soon.