Move things from crosslang to here

This commit is contained in:
2025-06-21 23:05:12 -05:00
parent 71a2c83e5a
commit 81f0d3be2e
41 changed files with 275029 additions and 96 deletions

View File

@ -38,6 +38,7 @@ template<typename T>
else
{
this->value = this->init();
this->hasInit=true;
mtx.Unlock();
return this->value;
}
@ -48,4 +49,4 @@ template<typename T>
if(hasInit) this->free(this->value);
}
};
}
}