| 188 | } |
| 189 | |
| 190 | size_t JavaValueDelegate::getMapEstimatedLength(const JavaValue& map, Valdi::ExceptionTracker& exceptionTracker) { |
| 191 | auto size = JavaEnv::getCache().getMapSizeMethod().call(javaValueToObject(map)); |
| 192 | return static_cast<size_t>(size); |
| 193 | } |
| 194 | |
| 195 | void JavaValueDelegate::visitMapKeyValues(const JavaValue& map, |
| 196 | Valdi::PlatformMapValueVisitor<JavaValue>& visitor, |
no test coverage detected