[[["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\u003eCompactVectorVector\u003c/code\u003e is a C++ class likely designed for efficient storage and manipulation of vectors of vectors.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods like \u003ccode\u003eAdd\u003c/code\u003e for adding elements, \u003ccode\u003eclear\u003c/code\u003e for resetting the structure, and \u003ccode\u003esize\u003c/code\u003e for checking the current size.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eAdd\u003c/code\u003e offers a way to append data and returns the previous size, which is beneficial for specific use cases mentioned in the documentation.\u003c/p\u003e\n"]]],["The `CompactVectorVector` class in C++ provides methods for managing a collection of vectors. `Add` (equivalent to `push_back`) appends data to the collection and returns the previous size. `clear` removes all elements from the collection. `size` returns the current number of vectors in the collection. These methods are used to manipulate and access the underlying data structure of the class.\n"],null,["# CompactVectorVector\n\nC++ Reference: class CompactVectorVector\n========================================\n\n\nNote: This documentation is automatically generated.\n\n| Method ||\n|-------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|\n| [`Add`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/inclusion.h#L43) | Return type: `int ` Arguments: `absl::Span\u003cconst T\u003e data` Same as push_back(). Returns the previous size() as this is convenient for how we use it. |\n| [`clear`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/inclusion.h#L61) | Return type: `void ` \u003cbr /\u003e |\n| [`size`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/inclusion.h#L67) | Return type: `size_t ` \u003cbr /\u003e |"]]