llroundf method

int llroundf(
  1. double _X
)

Implementation

int llroundf(
  double _X,
) {
  return (_llroundf ??=
      _dylib.lookupFunction<_c_llroundf, _dart_llroundf>('llroundf'))(
    _X,
  );
}