Adobe Source Libraries 1.49.0
A collection of C++ libraries.
|
[begin, end)
. The elements of the range are the beginning element to the element before the end element. The following are examples of ranges:[container.begin(), container.end())
[array[0], array[sizeof(array)/sizeof(array[0])])
[pair.first, pair.last)
X | A type that is a model of ConvertibleToRange |
x | Object of type X |
I | A type for iterating over objects of type X |
p , q | Objects of type I |
p
is a valid iterator in x
if it is a valid (nonsingular) iterator that is reachable from adobe::begin(x)
. [p, q)
is a valid range in x
if p
and q
are valid iterators in x
and if q
is reachable from p
.adobe::size(x)
is equal to the distance from adobe::begin(x)
to adobe::end(x)
. [adobe::begin(x), adobe::end(x))
will pass through every element of x
. [1]