| 101 | } |
| 102 | |
| 103 | int GetAxisIndex(Layout layout, Axis axis) { |
| 104 | return DispatchByLayout(layout, GetIndexByAxisFunc{axis}); |
| 105 | } |
| 106 | |
| 107 | int Size(Layout layout) { return DispatchByLayout(layout, NumAxisFunc()); } |
| 108 |
nothing calls this directly
no test coverage detected