Skip to content

Commit 9c4adef

Browse files
authored
Merge pull request #95 from ModProg/manual-default
Implement Default manually
2 parents 21056cf + 5fde6a9 commit 9c4adef

File tree

4 files changed

+69
-4
lines changed

4 files changed

+69
-4
lines changed

src/inclusive_map.rs

+18-1
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,23 @@ use serde::{
3434
/// you can provide equivalent free functions using the `StepFnsT` type parameter.
3535
/// [`StepLite`] is implemented for all standard integer types,
3636
/// but not for any third party crate types.
37-
#[derive(Clone, Default)]
37+
#[derive(Clone)]
3838
pub struct RangeInclusiveMap<K, V, StepFnsT = K> {
3939
// Wrap ranges so that they are `Ord`.
4040
// See `range_wrapper.rs` for explanation.
4141
pub(crate) btm: BTreeMap<RangeInclusiveStartWrapper<K>, V>,
4242
_phantom: PhantomData<StepFnsT>,
4343
}
4444

45+
impl<K, V, StepFnsT> Default for RangeInclusiveMap<K, V, StepFnsT> {
46+
fn default() -> Self {
47+
Self {
48+
btm: BTreeMap::default(),
49+
_phantom: PhantomData,
50+
}
51+
}
52+
}
53+
4554
impl<K, V, StepFnsT> Hash for RangeInclusiveMap<K, V, StepFnsT>
4655
where
4756
K: Hash,
@@ -1869,6 +1878,14 @@ mod tests {
18691878
assert_eq!(format!("{:?}", map), "{2..=5: (), 7..=8: (), 10..=11: ()}");
18701879
}
18711880

1881+
// impl Default where T: ?Default
1882+
1883+
#[test]
1884+
fn always_default() {
1885+
struct NoDefault;
1886+
RangeInclusiveMap::<NoDefault, NoDefault>::default();
1887+
}
1888+
18721889
// impl Serialize
18731890

18741891
#[cfg(feature = "serde1")]

src/inclusive_set.rs

+17-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub type Intersection<'a, T> = crate::operations::Intersection<'a, RangeInclusiv
2020
/// Union iterator over two [`RangeInclusiveSet`].
2121
pub type Union<'a, T> = crate::operations::Union<'a, RangeInclusive<T>, Iter<'a, T>>;
2222

23-
#[derive(Clone, Hash, Default, Eq, PartialEq, PartialOrd, Ord)]
23+
#[derive(Clone, Hash, Eq, PartialEq, PartialOrd, Ord)]
2424
/// A set whose items are stored as ranges bounded
2525
/// inclusively below and above `(start..=end)`.
2626
///
@@ -31,6 +31,14 @@ pub struct RangeInclusiveSet<T, StepFnsT = T> {
3131
rm: RangeInclusiveMap<T, (), StepFnsT>,
3232
}
3333

34+
impl<T, StepFnsT> Default for RangeInclusiveSet<T, StepFnsT> {
35+
fn default() -> Self {
36+
Self {
37+
rm: RangeInclusiveMap::default(),
38+
}
39+
}
40+
}
41+
3442
impl<T> RangeInclusiveSet<T, T>
3543
where
3644
T: Ord + Clone + StepLite,
@@ -777,6 +785,14 @@ mod tests {
777785
assert_eq!(format!("{:?}", set), "{2..=5, 7..=8, 10..=11}");
778786
}
779787

788+
// impl Default where T: ?Default
789+
790+
#[test]
791+
fn always_default() {
792+
struct NoDefault;
793+
RangeInclusiveSet::<NoDefault>::default();
794+
}
795+
780796
// impl Serialize
781797

782798
#[cfg(feature = "serde1")]

src/map.rs

+17-1
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,21 @@ use serde::{
2323
///
2424
/// Contiguous and overlapping ranges that map to the same value
2525
/// are coalesced into a single range.
26-
#[derive(Clone, Default, Eq)]
26+
#[derive(Clone, Eq)]
2727
pub struct RangeMap<K, V> {
2828
// Wrap ranges so that they are `Ord`.
2929
// See `range_wrapper.rs` for explanation.
3030
pub(crate) btm: BTreeMap<RangeStartWrapper<K>, V>,
3131
}
3232

33+
impl<K, V> Default for RangeMap<K, V> {
34+
fn default() -> Self {
35+
Self {
36+
btm: BTreeMap::default(),
37+
}
38+
}
39+
}
40+
3341
impl<K, V> Hash for RangeMap<K, V>
3442
where
3543
K: Hash,
@@ -1702,6 +1710,14 @@ mod tests {
17021710
assert_eq!(format!("{:?}", map), "{2..5: (), 6..7: (), 8..9: ()}");
17031711
}
17041712

1713+
// impl Default where T: ?Default
1714+
1715+
#[test]
1716+
fn always_default() {
1717+
struct NoDefault;
1718+
RangeMap::<NoDefault, NoDefault>::default();
1719+
}
1720+
17051721
// Iterator Tests
17061722

17071723
#[test]

src/set.rs

+17-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub type Intersection<'a, T> = crate::operations::Intersection<'a, Range<T>, Ite
2020
/// Union iterator over two [`RangeSet`].
2121
pub type Union<'a, T> = crate::operations::Union<'a, Range<T>, Iter<'a, T>>;
2222

23-
#[derive(Clone, Hash, Default, Eq, PartialEq, PartialOrd, Ord)]
23+
#[derive(Clone, Hash, Eq, PartialEq, PartialOrd, Ord)]
2424
/// A set whose items are stored as (half-open) ranges bounded
2525
/// inclusively below and exclusively above `(start..end)`.
2626
///
@@ -31,6 +31,14 @@ pub struct RangeSet<T> {
3131
rm: RangeMap<T, ()>,
3232
}
3333

34+
impl<T> Default for RangeSet<T> {
35+
fn default() -> Self {
36+
Self {
37+
rm: RangeMap::default(),
38+
}
39+
}
40+
}
41+
3442
impl<T> RangeSet<T>
3543
where
3644
T: Ord + Clone,
@@ -746,6 +754,14 @@ mod tests {
746754
assert_eq!(format!("{:?}", set), "{2..5, 7..8, 10..11}");
747755
}
748756

757+
// impl Default where T: ?Default
758+
759+
#[test]
760+
fn always_default() {
761+
struct NoDefault;
762+
RangeSet::<NoDefault>::default();
763+
}
764+
749765
// impl Serialize
750766

751767
#[cfg(feature = "serde1")]

0 commit comments

Comments
 (0)