len function

int len(
  1. dynamic x
)

Implementation

int len(dynamic x) {
    return x.length;
}