|
| void | test_in_game_time () |
| | Test this class and its free functions.
|
| |
| std::string | to_human_str (const in_game_time &t) noexcept |
| | Convert to string, rounded off to two digits.
|
| |
| std::string | to_str (const in_game_time &t) noexcept |
| | Convert to literal string, with all the digits behind the comma.
|
| |
| bool | operator== (const in_game_time &lhs, const in_game_time &rhs) noexcept |
| |
| bool | operator< (const in_game_time &lhs, const in_game_time &rhs) noexcept |
| |
| bool | operator<= (const in_game_time &lhs, const in_game_time &rhs) noexcept |
| |
| in_game_time & | operator+= (in_game_time &lhs, const delta_t &dt) noexcept |
| |
| in_game_time | operator+ (const in_game_time &lhs, const delta_t &dt) noexcept |
| |
| in_game_time | operator- (const in_game_time &lhs, const delta_t &dt) noexcept |
| |
| delta_t | operator- (const in_game_time &lhs, const in_game_time &dt) noexcept |
| |
| bool | operator> (const in_game_time &lhs, const in_game_time &rhs) noexcept |
| |
| bool | operator>= (const in_game_time &lhs, const in_game_time &rhs) noexcept |
| |
| std::ostream & | operator<< (std::ostream &os, const in_game_time &dt) noexcept |
| |