Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
library
/
compiler-builtins
/
libm
/
src
/
math
/
remainder.rs
blob: 54152df32f151b13f72c15607553a6df59033b65 [
file
] [
log
] [
blame
]
#[
cfg_attr
(
assert_no_panic
,
no_panic
::
no_panic
)]
pub
fn
remainder
(
x
:
f64
,
y
:
f64
)
->
f64
{
let
(
result
,
_
)
=
super
::
remquo
(
x
,
y
);
result
}