optional<std::array<LatLng, 4>> Converter<std::array<LatLng, 4>>::operator()(const mbgl::android::Value& value, Error& error) const { if (value.isNull() || !value.isArray()) { error = { "value cannot be converted to LatLng array" }; return {}; } return convert<GeoJSON>(value.toString(), error); }
inline bool isArray(const mbgl::android::Value& value) { return value.isArray(); }