Added value_t::to_size_t method

This commit is contained in:
John Wiegley 2012-02-10 20:08:50 -10:00
parent 8887fe9fa9
commit f322769775

View file

@ -778,6 +778,7 @@ public:
bool to_boolean() const; bool to_boolean() const;
int to_int() const; int to_int() const;
long to_long() const; long to_long() const;
std::size_t to_size_t() const { return static_cast<std::size_t>(to_long()); }
datetime_t to_datetime() const; datetime_t to_datetime() const;
date_t to_date() const; date_t to_date() const;
amount_t to_amount() const; amount_t to_amount() const;