round function

int round(
  1. num v
)

Implementation

int round(num v) {
  return v.round();
}