Length static method

Expr Length(
  1. Expr exp
)
the length of a String value

Implementation

static Expr Length(Expr exp) {
  return new FunctionExpression("length", [exp])..fieldType = dbType.Int;
}