long function

Expr long(
  1. int value
)

Implementation

Expr long(int value) {
  return ExprValue(Value.long(Int64(value)));
}