Garden 🌻

String::len()

Return the number of characters (codepoints) in the string.

Example
"abc".len() //-> 3
Source Code
public method len(this: String): Int {
  __BUILT_IN_IMPLEMENTATION
}