E7015 Stdlib Errors
Stdlib
len() is not supported for type '%s'; len() works on string, array, and map types
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.