Skip to content

Commit 4e25e99

Browse files
Consolidate use statements for std::ops in lazy_segment_tree.rs (#851)
ref: refactor lazy segment tree import statements
1 parent 8467b52 commit 4e25e99

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/data_structures/lazy_segment_tree.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
use std::fmt::{Debug, Display};
2-
use std::ops::Add;
3-
use std::ops::AddAssign;
4-
use std::ops::Range;
2+
use std::ops::{Add, AddAssign, Range};
53

64
pub struct LazySegmentTree<T: Debug + Default + Ord + Copy + Display + AddAssign + Add<Output = T>>
75
{

0 commit comments

Comments
 (0)