QuotesHolder
Path in Local Pack include/quotes_holder.h
This class allows you to iterate through the quotes. Quotes are sorted by price in descending order for BID (Buy) and in ascending order for ASK (Sell).
Methods
Name | Description |
---|---|
begin() | An iterator pointing to the first element in the collection. |
end() | An iterator referring to the past-the-end element in the collection. |
rbegin() | A reverse iterator pointing to the last element. |
rend() | A reverse iterator pointing to the theoretical element preceding the first element. |
Methods description
begin()
An iterator pointing to the first element in the collection.
C++
const_iterator begin() const;
end()
An iterator referring to the past-the-end element in the collection.
C++
const_iterator end() const;
rbegin()
A reverse iterator pointing to the last element.
C++
const_reverse_iterator rbegin() const;
rend()
A reverse iterator pointing to the theoretical element preceding the first element.
C++
const_reverse_iterator rend() const;