|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Wraps a pair of iterators, providing member begin() and end() functions that return those iterators. More...
#include "juce_Enumerate.h"
Public Member Functions | |
| constexpr | IteratorPair (Begin bIn, End eIn) |
| Constructs a pair from a begin and end iterator. | |
| constexpr auto | begin () const |
| Returns the begin iterator. | |
| constexpr auto | end () const |
| Returns the end iterator. | |
Wraps a pair of iterators, providing member begin() and end() functions that return those iterators.
This is useful in situations where you have an iterator pair, but want to use that pair somewhere that requires an iterable range, such as in a ranged-for loop.
Definition at line 325 of file juce_Enumerate.h.
|
constexpr |
Constructs a pair from a begin and end iterator.
Instead of calling this directly, use makeRange().
Definition at line 331 of file juce_Enumerate.h.
|
constexpr |
Returns the begin iterator.
Definition at line 335 of file juce_Enumerate.h.
|
constexpr |
Returns the end iterator.
Definition at line 338 of file juce_Enumerate.h.