Big Data String Library


Store up to 2 × 10²⁸ chars long strings during data stage and read them during control stage

Internal
2 years ago
1.1
41.5K

b [done] Right parenthesis position question

2 years ago

Line 44 of pack.lua reads
assert(type(data == "string", "not a string!"))

Should this not be
assert(type(data) == "string", "not a string!")
?

Although the assert error message is optional (and so assert could take one argument), I've only seen a one-argument version of the type function.

2 years ago

Well spotted!

Thank you for the bug report.
This is fixed with version 1.0.1

New response