E7015 Stdlib Validation Errors
len-unsupported-type
len not supported for type
When this occurs
`len(123)`
Example error message
error[E7015]:
len() not supported for INTEGER
How to fix
`len()` only works on arrays, strings, and maps.
Related errors
No related errors.