Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
5e968507ff7d5773adf3e86ede05759538a7c92f
/
.
/
examples
/
rust
/
Max_array.rs
blob: 24d9683e8cb7af0fdaffb4b97faf80b088de3640 [
file
] [
log
] [
blame
] [
raw
]
pub
fn
max_array
(
x
:
&
mut
[
f64
;
65536
],
y
:
&[
f64
;
65536
])
{
for
(
x
,
y
)
in x
.
iter_mut
().
zip
(
y
.
iter_mut
())
{
*
x
=
if
*
y
>
*
x
{
*
y
}
else
{
*
x
};
}
}