| 97 | } |
| 98 | |
| 99 | Axis GetAxis(Layout layout, int32_t index) { |
| 100 | return DispatchByLayout(layout, GetAxisByIndexFunc{index}); |
| 101 | } |
| 102 | |
| 103 | int GetAxisIndex(Layout layout, Axis axis) { |
| 104 | return DispatchByLayout(layout, GetIndexByAxisFunc{axis}); |
nothing calls this directly
no test coverage detected