[[["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\u003eBeginEndReverseIteratorWrapper\u003c/code\u003e provides a way to iterate over a container in reverse order.\u003c/p\u003e\n"],["\u003cp\u003eIt achieves this by wrapping the \u003ccode\u003ebegin\u003c/code\u003e and \u003ccode\u003eend\u003c/code\u003e methods of the underlying container to return reverse iterators.\u003c/p\u003e\n"],["\u003cp\u003eThe class constructor takes a const reference to the container as an argument.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ebegin\u003c/code\u003e and \u003ccode\u003eend\u003c/code\u003e methods return \u003ccode\u003econst_reverse_iterator\u003c/code\u003e for reverse traversal of the container.\u003c/p\u003e\n"]]],["The `BeginEndReverseIteratorWrapper` class in C++ provides a way to iterate over a container in reverse. It has two core methods: `begin`, which returns a constant reverse iterator to the beginning of the reversed container, and `end`, which returns a constant reverse iterator to the end. The constructor `BeginEndReverseIteratorWrapper` explicitly takes a constant reference to a container (`const Container& c`) as input.\n"],null,[]]