What is the meaning and intention of nullable return values from GeometryEngine, such as: GeometryEngine.distanceOrNull
GeometryEngine.projectOrNull
GeometryEngine.clipOrNull
... and so on, there are many methods like this
Does a null return value mean an error occurred, or that input parameters are invalid somehow?
Typically I would expect the api documentation to specify what a null return value means, but I could not find explanations for these, so maybe its some general pattern for this SDK?