Skip to content

Commit aad2062

Browse files
committed
Specialize Vec::from_elem for other numeric types
1 parent 675475c commit aad2062

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

src/libcollections/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@
3535
#![feature(box_patterns)]
3636
#![feature(box_syntax)]
3737
#![cfg_attr(not(test), feature(char_escape_debug))]
38+
#![cfg_attr(not(test), feature(core_float))]
3839
#![feature(core_intrinsics)]
3940
#![feature(dropck_eyepatch)]
4041
#![feature(exact_size_is_empty)]
4142
#![feature(fmt_internals)]
4243
#![feature(fused)]
4344
#![feature(generic_param_attrs)]
4445
#![feature(heap_api)]
46+
#![feature(i128_type)]
4547
#![feature(inclusive_range)]
4648
#![feature(lang_items)]
4749
#![feature(manually_drop)]

src/libcollections/vec.rs

+37
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ use core::hash::{self, Hash};
7777
use core::intrinsics::{arith_offset, assume};
7878
use core::iter::{FromIterator, FusedIterator, TrustedLen};
7979
use core::mem;
80+
#[cfg(not(test))]
81+
use core::num::Float;
8082
use core::ops::{InPlace, Index, IndexMut, Place, Placer};
8183
use core::ops;
8284
use core::ptr;
@@ -1404,6 +1406,41 @@ impl SpecFromElem for u8 {
14041406
}
14051407
}
14061408

1409+
macro_rules! impl_spec_from_elem {
1410+
($t: ty, $is_zero: expr) => {
1411+
impl SpecFromElem for $t {
1412+
#[inline]
1413+
fn from_elem(elem: $t, n: usize) -> Vec<$t> {
1414+
if $is_zero(elem) {
1415+
return Vec {
1416+
buf: RawVec::with_capacity_zeroed(n),
1417+
len: n,
1418+
}
1419+
}
1420+
let mut v = Vec::with_capacity(n);
1421+
v.extend_with_element(n, elem);
1422+
v
1423+
}
1424+
}
1425+
};
1426+
}
1427+
1428+
impl_spec_from_elem!(i8, |x| x == 0);
1429+
impl_spec_from_elem!(i16, |x| x == 0);
1430+
impl_spec_from_elem!(i32, |x| x == 0);
1431+
impl_spec_from_elem!(i64, |x| x == 0);
1432+
impl_spec_from_elem!(i128, |x| x == 0);
1433+
impl_spec_from_elem!(isize, |x| x == 0);
1434+
1435+
impl_spec_from_elem!(u16, |x| x == 0);
1436+
impl_spec_from_elem!(u32, |x| x == 0);
1437+
impl_spec_from_elem!(u64, |x| x == 0);
1438+
impl_spec_from_elem!(u128, |x| x == 0);
1439+
impl_spec_from_elem!(usize, |x| x == 0);
1440+
1441+
impl_spec_from_elem!(f32, |x: f32| x == 0. && x.is_sign_positive());
1442+
impl_spec_from_elem!(f64, |x: f64| x == 0. && x.is_sign_positive());
1443+
14071444
////////////////////////////////////////////////////////////////////////////////
14081445
// Common trait implementations for Vec
14091446
////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)