| 19 | namespace facebook::yoga { |
| 20 | |
| 21 | inline bool isRow(const FlexDirection flexDirection) { |
| 22 | return flexDirection == FlexDirection::Row || |
| 23 | flexDirection == FlexDirection::RowReverse; |
| 24 | } |
| 25 | |
| 26 | inline bool isColumn(const FlexDirection flexDirection) { |
| 27 | return flexDirection == FlexDirection::Column || |
no outgoing calls
no test coverage detected