#include <token_value.hh>
Public Member Functions | |
| bool | operator() (const ptr< token_value > &left, const ptr< token_value > &right) const |
| Compares two token values. | |
Definition at line 66 of file token_value.hh.
| bool lestes::lang::cplus::lex::token_value::compare_less::operator() | ( | const ptr< token_value > & | left, | |
| const ptr< token_value > & | right | |||
| ) | const |
Compares two token values.
Compares two token values. Null is less than everything else. Otherwise content is compared with < operator.
| left | The left operand for the comparator. | |
| right | The right operand for the comparator. |
Definition at line 113 of file token_value.cc.
References lestes::is_less().
00114 { 00115 return is_less(left,right); 00116 }
1.5.1-20070107