| 29 | |
| 30 | template <typename NumType> |
| 31 | inline Maybe<Direction> directionOf(NumType const& n) { |
| 32 | if (n == 0) |
| 33 | return {}; |
| 34 | else |
| 35 | return n < 0 ? Direction::Left : Direction::Right; |
| 36 | } |
| 37 | |
| 38 | enum class Gender : uint8_t { |
| 39 | Male, |
no outgoing calls
no test coverage detected