[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-06 UTC."],[[["\u003cp\u003e\u003ccode\u003eSVector\u003c/code\u003e is a C++ class providing a dynamic array implementation with methods for managing its size and capacity.\u003c/p\u003e\n"],["\u003cp\u003eIt offers functionalities such as resizing, reserving memory, clearing elements, and accessing data.\u003c/p\u003e\n"],["\u003cp\u003eThe class supports copy and move semantics, allowing efficient transfer of ownership.\u003c/p\u003e\n"],["\u003cp\u003eIt includes methods like \u003ccode\u003ecapacity\u003c/code\u003e, \u003ccode\u003esize\u003c/code\u003e, \u003ccode\u003edata\u003c/code\u003e, \u003ccode\u003eclear\u003c/code\u003e, \u003ccode\u003egrow\u003c/code\u003e, and others to interact with the vector's elements and properties.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eSVector\u003c/code\u003e has functionalities like \u003ccode\u003ereserve\u003c/code\u003e for pre-allocating memory and \u003ccode\u003egrow\u003c/code\u003e which increases the size while keeping old data.\u003c/p\u003e\n"]]],["The `SVector` class in C++ offers methods for dynamic array management. Key actions include: `capacity` to get the current capacity, `clear` to empty the vector, `clear_and_dealloc` for deallocation, `data` to access the underlying data, `grow` to add elements, `max_size` for the maximum capacity, `reserve` to pre-allocate memory, `resize` to change the size, and `size` to check current size. Copy/move constructors, `swap`, and a destructor are also provided.\n"],null,[]]