Skip to content
This repository has been archived by the owner on Nov 11, 2018. It is now read-only.

Commit

Permalink
Added custom fork of std::collections::BTreeSet because of missing in…
Browse files Browse the repository at this point in the history
…sert-with-iterator-to-last-inserted function ( see rust-lang/rfcs#1194 )
  • Loading branch information
fschutt committed Dec 16, 2017
1 parent 5e1e38f commit e53890b
Show file tree
Hide file tree
Showing 10 changed files with 5,240 additions and 20 deletions.
2 changes: 1 addition & 1 deletion src/bbox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub struct Bbox {

impl Bbox {

// Returns true if two bounding boxes overlap
/// Returns true if two bounding boxes overlap
#[inline]
pub fn overlaps(&self, other: &Self) -> bool {
!((other.left > self.right) ||
Expand Down
Loading

0 comments on commit e53890b

Please sign in to comment.