Sign in
rust
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
library
/
compiler-builtins
/
libm
/
src
/
math
/
remainderf.rs
blob: 21f62921428078abefe3100bcec1c1dda14fa340 [
file
] [
log
] [
blame
]
#[
cfg_attr
(
assert_no_panic
,
no_panic
::
no_panic
)]
pub
fn
remainderf
(
x
:
f32
,
y
:
f32
)
->
f32
{
let
(
result
,
_
)
=
super
::
remquof
(
x
,
y
);
result
}