MCPcopy Create free account
hub / github.com/Snapchat/Valdi / asDouble

Method asDouble

valdi/src/java/com/snap/valdi/utils/JSConversions.kt:73–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71 }
72
73 fun asDouble(any: Any?): Double {
74 if (any is Number) {
75 return any.toDouble()
76 } else if (any is String) {
77 return any.toDouble()
78 }
79
80 throw AttributeError("value $any is not a double")
81 }
82
83 private class WrappedJavaInstance(val instance: Any) {
84

Callers 2

jsonValueToValueFunction · 0.80
applyBorderMethod · 0.80

Calls 2

AttributeErrorClass · 0.85
toDoubleMethod · 0.45

Tested by

no test coverage detected