lroundf method

int lroundf(
  1. double _X
)

Implementation

int lroundf(
  double _X,
) {
  return (_lroundf ??=
      _dylib.lookupFunction<_c_lroundf, _dart_lroundf>('lroundf'))(
    _X,
  );
}