Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
3991aa5d3338019d58599b378f8fae430916ab3d
/
.
/
crates
/
libm
/
src
/
math
/
ldexp.rs
blob: e46242e55b254f5b5a0631dcaf34398e40003b10 [
file
] [
log
] [
blame
]
#[
cfg_attr
(
all
(
test
,
assert_no_panic
),
no_panic
::
no_panic
)]
pub
fn
ldexp
(
x
:
f64
,
n
:
i32
)
->
f64
{
super
::
scalbn
(
x
,
n
)
}