Made CellArray.h public for extension authors to use.#92
Closed
WildCard65 wants to merge 1 commit intoalliedmodders:masterfrom
WildCard65:PubCellArray
Closed
Made CellArray.h public for extension authors to use.#92WildCard65 wants to merge 1 commit intoalliedmodders:masterfrom WildCard65:PubCellArray
WildCard65 wants to merge 1 commit intoalliedmodders:masterfrom
WildCard65:PubCellArray
Conversation
Note: Works ALOT better then Vectors...
Member
|
The supported modern container formats for SourceMod are in AMTL. We won't be exposing more of the old internal ones. |
Member
|
Worth noting, CellArray isn't type safe which means it's slated for destruction in the post-Transitional-API world. When it's type safe, it'll be worth thinking whether it's a useful general construct for extensions. (And at that point it will almost certainly subclass AMTL Vector). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note: Works ALOT better then Vectors...
About the note, well, in http://github.com/WildCard65/FF2-Alpha I'm making an extension that used an IBasicTrie + CUtlVector combo... but it ran into an issue where the vector f***ed up somewhere in it's storing system.
I solved the issue by replacing all usage of CUtlVector with CellArray, so I believe this should become public.