| 229 | inline constexpr v_2d& operator=(const v_2d& v) = default; |
| 230 | |
| 231 | inline constexpr std::array<T, 2> a() const |
| 232 | { |
| 233 | return std::array<T, 2>{x, y}; |
| 234 | } |
| 235 | |
| 236 | // Returns rectangular area of vector |
| 237 | inline constexpr auto area() const |
nothing calls this directly
no outgoing calls
no test coverage detected