aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/blobbuilder.cpp (follow)
AgeCommit message (Collapse)Author
2023-08-01Updated copyright date.Mike Buland
2022-04-15Augments to Blob and BlobBuilder.Mike Buland
You can construct a BlobBuilder from a Blob now, and Blob has an extra null byte of padding just in case you use a Blob to store a string.
2019-11-11Working on TextBuilder & Text.Mike Buland
Seriously thinking about changing Text to just use full codepoints. It would be much less work, more reliable and predictable, easier to use, but would use twice the memory.
2019-08-08Fixed a bug in the BlobBuilder.Mike Buland
Appending wasn't working correctly.
2019-06-25BlobBuilder implemented, tests in progress.Mike Buland
2019-06-25Got most of the functions in, now to test them.Mike Buland
2019-06-24Bu::BlobBuilder compiles & is closer to working...eichlan
2019-06-18Doens't build yet, but the BlobBuilder is in progress.Mike Buland
2019-05-31It builds again!Mike Buland
2019-05-25Started work on the SharedCore BlobBuilder.Mike Buland
This will contain everything that made Bu::String flexible and fast when building, and a nightmare for multi-threaded programming.
2019-05-25Started Bu::Text and Bu::Blob.Mike Buland
These will someday replace Bu::String and Bu::UtfString. The plan is to support more encodings in the Text class than just Unicode, Blob and Text will not be shared core, but the Builders will be, making Text and Blob objects much safer in multi-threaded programs.