Sign in
android
/
platform
/
external
/
rust
/
crates
/
libm
/
refs/heads/android13-prebuilt-test
/
.
/
src
/
math
/
remainderf.rs
blob: b1407cf2ace36be2c36713b624443f21f10b39fb [
file
] [
log
] [
blame
] [
edit
]
#[
cfg_attr
(
all
(
test
,
assert_no_panic
),
no_panic
::
no_panic
)]
pub
fn
remainderf
(
x
:
f32
,
y
:
f32
)
->
f32
{
let
(
result
,
_
)
=
super
::
remquof
(
x
,
y
);
result
}