Panda3D
rangeIterator.I
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file rangeIterator.I
10  * @author drose
11  * @date 2003-09-07
12  */
13 
14 /**
15  * Returns the current Unicode value represented by the iterator, or -1 if the
16  * iterator has reached the end.
17  */
18 INLINE int RangeIterator::
19 get_code() const {
20  return _code;
21 }
22 
23 /**
24  * Returns true if all the code have been retrieved, false otherwise.
25  */
26 INLINE bool RangeIterator::
27 eof() const {
28  return (_it == _desc._range_list.end());
29 }
bool eof() const
Returns true if all the code have been retrieved, false otherwise.
Definition: rangeIterator.I:27
int get_code() const
Returns the current Unicode value represented by the iterator, or -1 if the iterator has reached the ...
Definition: rangeIterator.I:19