summaryrefslogtreecommitdiff
path: root/include/pso/TArray.h
AgeCommit message (Collapse)Author
2023-03-04TProtocol: Match ctormrb0nk500
The reason for the large change is because I was trying to figure out why `TTcpSocket`'s ctor was so disjointed from the rest of the functions. Turns out, it's inlined, and inlining was turned off. Most likely, the whole codebase has inlining turned off. oof, press f `TArray`.
2023-03-03TArray: Add `at()`, and `at_as()`mrb0nk500
2023-03-02TArray: Make `{,fast_}fill_with()` type genericmrb0nk500
2023-03-02TArray: Add `size_as()`mrb0nk500
2023-02-27TArray: Add some extra functionsmrb0nk500
2023-02-26TArray: Add `TArray` template classmrb0nk500
This is a convenience class, to make working with arrays alot easier, but without hurting our chances of matching.