Add getUndefined() method to obtain the undefined value

Summary:
Add getUndefined() method to obtain the undefined value.
This would allow to obtain the Yoga undefined value in runtime, and not just in compile time

Reviewed By: davidaurelio

Differential Revision: D13136972

fbshipit-source-id: aa198aa1ea65bb6b7302abeba6f9f5d483a45ff3
This commit is contained in:
Amir Shalem
2018-11-22 02:33:33 -08:00
committed by Facebook Github Bot
parent 7d7d9a7ef0
commit dd12907632

View File

@@ -35,4 +35,8 @@ public class YogaConstants {
public static boolean isUndefined(YogaValue value) { public static boolean isUndefined(YogaValue value) {
return value.unit == YogaUnit.UNDEFINED; return value.unit == YogaUnit.UNDEFINED;
} }
public static float getUndefined() {
return UNDEFINED;
}
} }