1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978
use core::borrow::Borrow;
use core::cmp::Ordering;
use core::iter::FromIterator;
use core::ops::{BitAnd, BitOr, BitXor, Sub};
use crate::tree::{
ConsumingIter as TreeConsumingIter, ElemRefIter, ElemRefVec, Iter as TreeIter, SGTree,
};
#[cfg(feature = "high_assurance")]
use crate::tree::SGErr;
/// Ordered set.
/// API examples and descriptions are all adapted or directly copied from the standard library's [`BTreeSet`](https://doc.rust-lang.org/std/collections/struct.BTreeSet.html).
#[allow(clippy::upper_case_acronyms)] // TODO: Removal == breaking change, e.g. v2.0
pub struct SGSet<T: Ord> {
bst: SGTree<T, ()>,
}
impl<T: Ord> SGSet<T> {
/// Makes a new, empty `SGSet`.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut set: SGSet<i32> = SGSet::new();
/// ```
pub fn new() -> Self {
SGSet { bst: SGTree::new() }
}
/// `#![no_std]`: total capacity, e.g. maximum number of set elements.
/// Attempting to insert elements beyond capacity will panic, unless the `high_assurance` feature is enabled.
///
/// If using `std`: fast capacity, e.g. number of set elements stored on the stack.
/// Elements inserted beyond capacity will be stored on the heap.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut set: SGSet<i32> = SGSet::new();
///
/// assert!(set.capacity() > 0)
/// ```
pub fn capacity(&self) -> usize {
self.bst.capacity()
}
/// Moves all elements from `other` into `self`, leaving `other` empty.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut a = SGSet::new();
/// a.insert(1);
/// a.insert(2);
/// a.insert(3);
///
/// let mut b = SGSet::new();
/// b.insert(3);
/// b.insert(4);
/// b.insert(5);
///
/// a.append(&mut b);
///
/// assert_eq!(a.len(), 5);
/// assert_eq!(b.len(), 0);
///
/// assert!(a.contains(&1));
/// assert!(a.contains(&2));
/// assert!(a.contains(&3));
/// assert!(a.contains(&4));
/// assert!(a.contains(&5));
/// ```
#[cfg(not(feature = "high_assurance"))]
pub fn append(&mut self, other: &mut SGSet<T>)
where
T: Ord,
{
self.bst.append(&mut other.bst);
}
/// Attempts to move all elements from `other` into `self`, leaving `other` empty.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut a = SGSet::new();
/// a.insert(1);
/// a.insert(2);
/// a.insert(3);
///
/// let mut b = SGSet::new();
/// b.insert(3);
/// b.insert(4);
/// b.insert(5);
///
/// a.append(&mut b);
///
/// assert_eq!(a.len(), 5);
/// assert_eq!(b.len(), 0);
///
/// assert!(a.contains(&1));
/// assert!(a.contains(&2));
/// assert!(a.contains(&3));
/// assert!(a.contains(&4));
/// assert!(a.contains(&5));
/// ```
#[cfg(feature = "high_assurance")]
pub fn append(&mut self, other: &mut SGSet<T>) -> Result<(), SGErr> {
self.bst.append(&mut other.bst)
}
/// Adds a value to the set.
/// If the set did not have this value present, `true` is returned.
/// If the set did have this value present, `false` is returned, and the entry is overwritten.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut set = SGSet::new();
///
/// assert_eq!(set.insert(2), true);
/// assert_eq!(set.insert(2), false);
/// assert_eq!(set.len(), 1);
/// ```
#[cfg(not(feature = "high_assurance"))]
pub fn insert(&mut self, value: T) -> bool
where
T: Ord,
{
self.bst.insert(value, ()).is_none()
}
/// Adds a value to the set.
/// Returns `Err` if sets's stack capacity is full, else the `Ok` contains:
/// * `true` if the set did not have this value present.
/// * `false` if the set did have this value present (and that old entry is overwritten).
///
/// # Examples
///
/// ```
/// use scapegoat::{SGSet, SGErr};
///
/// let mut set = SGSet::new();
///
/// assert_eq!(set.insert(2), Ok(true));
/// assert_eq!(set.insert(2), Ok(false));
/// assert_eq!(set.len(), 1);
///
/// let mut elem = 3;
/// while set.len() < set.capacity() {
/// set.insert(elem);
/// elem += 1;
/// }
///
/// assert_eq!(set.insert(elem), Err(SGErr::StackCapacityExceeded));
/// ```
#[cfg(feature = "high_assurance")]
pub fn insert(&mut self, value: T) -> Result<bool, SGErr>
where
T: Ord,
{
match self.bst.insert(value, ()) {
Ok(opt_val) => Ok(opt_val.is_none()),
Err(_) => Err(SGErr::StackCapacityExceeded),
}
}
/// Gets an iterator that visits the values in the `SGSet` in ascending order.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let set: SGSet<usize> = [1, 2, 3].iter().cloned().collect();
/// let mut set_iter = set.iter();
/// assert_eq!(set_iter.next(), Some(&1));
/// assert_eq!(set_iter.next(), Some(&2));
/// assert_eq!(set_iter.next(), Some(&3));
/// assert_eq!(set_iter.next(), None);
/// ```
///
/// Values returned by the iterator are returned in ascending order:
///
/// ```
/// use scapegoat::SGSet;
///
/// let set: SGSet<usize> = [3, 1, 2].iter().cloned().collect();
/// let mut set_iter = set.iter();
/// assert_eq!(set_iter.next(), Some(&1));
/// assert_eq!(set_iter.next(), Some(&2));
/// assert_eq!(set_iter.next(), Some(&3));
/// assert_eq!(set_iter.next(), None);
/// ```
pub fn iter(&self) -> Iter<'_, T> {
Iter::new(self)
}
/// Removes a value from the set. Returns whether the value was
/// present in the set.
///
/// The value may be any borrowed form of the set's value type,
/// but the ordering on the borrowed form *must* match the
/// ordering on the value type.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut set = SGSet::new();
///
/// set.insert(2);
/// assert_eq!(set.remove(&2), true);
/// assert_eq!(set.remove(&2), false);
/// ```
pub fn remove<Q>(&mut self, value: &Q) -> bool
where
T: Borrow<Q> + Ord,
Q: Ord + ?Sized,
{
self.bst.remove(value).is_some()
}
/// Splits the collection into two at the given value. Returns everything after the given value,
/// including the value.
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut a = SGSet::new();
/// a.insert(1);
/// a.insert(2);
/// a.insert(3);
/// a.insert(17);
/// a.insert(41);
///
/// let b = a.split_off(&3);
///
/// assert_eq!(a.len(), 2);
/// assert_eq!(b.len(), 3);
///
/// assert!(a.contains(&1));
/// assert!(a.contains(&2));
///
/// assert!(b.contains(&3));
/// assert!(b.contains(&17));
/// assert!(b.contains(&41));
/// ```
pub fn split_off<Q>(&mut self, value: &Q) -> SGSet<T>
where
T: Borrow<Q> + Ord,
Q: Ord + ?Sized,
{
SGSet {
bst: self.bst.split_off(value),
}
}
/// Adds a value to the set, replacing the existing value, if any, that is equal to the given
/// one. Returns the replaced value.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut set = SGSet::new();
/// set.insert(Vec::<i32>::new());
///
/// assert_eq!(set.get(&[][..]).unwrap().capacity(), 0);
/// set.replace(Vec::with_capacity(10));
/// assert_eq!(set.get(&[][..]).unwrap().capacity(), 10);
/// ```
pub fn replace(&mut self, value: T) -> Option<T>
where
T: Ord,
{
let removed = self.bst.remove_entry(&value).map(|(k, _)| k);
#[cfg(not(feature = "high_assurance"))]
{
self.insert(value);
}
#[allow(unused_must_use)]
#[cfg(feature = "high_assurance")]
{
self.insert(value);
}
removed
}
// TODO v2.0: impl and add fuzz test
/// Removes and returns the value in the set, if any, that is equal to the given one.
///
/// The value may be any borrowed form of the set's value type,
/// but the ordering on the borrowed form *must* match the
/// ordering on the value type.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut set: SGSet<_> = [1, 2, 3].iter().cloned().collect();
/// assert_eq!(set.take(&2), Some(2));
/// assert_eq!(set.take(&2), None);
/// ```
pub fn take<Q>(&mut self, value: &Q) -> Option<T>
where
T: Borrow<Q> + Ord,
Q: Ord + ?Sized,
{
self.bst.remove_entry(value).map(|(k, _)| k)
}
/// Retains only the elements specified by the predicate.
///
/// In other words, remove all elements `e` such that `f(&e)` returns `false`.
/// The elements are visited in ascending order.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let xs = [1, 2, 3, 4, 5, 6];
/// let mut set: SGSet<i32> = xs.iter().cloned().collect();
/// // Keep only the even numbers.
/// set.retain(|&k| k % 2 == 0);
/// assert!(set.iter().eq([2, 4, 6].iter()));
/// ```
pub fn retain<F>(&mut self, mut f: F)
where
T: Ord,
F: FnMut(&T) -> bool,
{
self.bst.retain(|k, _| f(k));
}
/// Returns a reference to the value in the set, if any, that is equal to the given value.
///
/// The value may be any borrowed form of the set's value type,
/// but the ordering on the borrowed form *must* match the
/// ordering on the value type.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let set: SGSet<_> = [1, 2, 3].iter().cloned().collect();
/// assert_eq!(set.get(&2), Some(&2));
/// assert_eq!(set.get(&4), None);
/// ```
pub fn get<Q>(&self, value: &Q) -> Option<&T>
where
T: Borrow<Q> + Ord,
Q: Ord + ?Sized,
{
self.bst.get_key_value(value).map(|(k, _)| k)
}
/// Clears the set, removing all values.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut v = SGSet::new();
/// v.insert(1);
/// v.clear();
/// assert!(v.is_empty());;
/// ```
pub fn clear(&mut self) {
self.bst.clear()
}
/// Returns `true` if the set contains a value.
///
/// The value may be any borrowed form of the set's value type,
/// but the ordering on the borrowed form *must* match the
/// ordering on the value type.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let set: SGSet<_> = [1, 2, 3].iter().cloned().collect();
/// assert_eq!(set.contains(&1), true);
/// assert_eq!(set.contains(&4), false);
/// ```
pub fn contains<Q>(&self, value: &Q) -> bool
where
T: Borrow<Q> + Ord,
Q: Ord + ?Sized,
{
self.bst.contains_key(value)
}
/// Returns a reference to the first/minium value in the set, if any.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut map = SGSet::new();
/// assert_eq!(map.first(), None);
/// map.insert(1);
/// assert_eq!(map.first(), Some(&1));
/// map.insert(2);
/// assert_eq!(map.first(), Some(&1));
/// ```
pub fn first(&self) -> Option<&T>
where
T: Ord,
{
self.bst.first_key()
}
/// Removes the first value from the set and returns it, if any.
/// The first value is the minimum value that was in the set.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut set = SGSet::new();
///
/// set.insert(1);
/// while let Some(n) = set.pop_first() {
/// assert_eq!(n, 1);
/// }
/// assert!(set.is_empty());
/// ```
pub fn pop_first(&mut self) -> Option<T>
where
T: Ord,
{
self.bst.pop_first().map(|(k, _)| k)
}
/// Returns the last/maximum value in the set, if any.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut map = SGSet::new();
/// assert_eq!(map.first(), None);
/// map.insert(1);
/// assert_eq!(map.last(), Some(&1));
/// map.insert(2);
/// assert_eq!(map.last(), Some(&2));
/// ```
pub fn last(&self) -> Option<&T>
where
T: Ord,
{
self.bst.last_key()
}
/// Removes the last value from the set and returns it, if any.
/// The last value is the maximum value that was in the set.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut set = SGSet::new();
///
/// set.insert(1);
/// while let Some(n) = set.pop_last() {
/// assert_eq!(n, 1);
/// }
/// assert!(set.is_empty());
/// ```
pub fn pop_last(&mut self) -> Option<T>
where
T: Ord,
{
self.bst.pop_last().map(|(k, _)| k)
}
/// Returns the number of elements in the set.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut v = SGSet::new();
/// assert_eq!(v.len(), 0);
/// v.insert(1);
/// assert_eq!(v.len(), 1);
/// ```
pub fn len(&self) -> usize {
self.bst.len()
}
/// Returns an iterator over values representing set difference, e.g., values in `self` but not in `other`, in ascending order.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut a = SGSet::new();
/// a.insert(1);
/// a.insert(2);
///
/// let mut b = SGSet::new();
/// b.insert(2);
/// b.insert(3);
///
/// let diff: Vec<_> = a.difference(&b).cloned().collect();
/// assert_eq!(diff, [1]);
/// ```
pub fn difference(&self, other: &SGSet<T>) -> ElemRefIter<T>
where
T: Ord,
{
let mut diff = ElemRefVec::new();
for val in self {
if !other.contains(val) {
diff.push(val);
}
}
diff.into_iter()
}
/// Returns an iterator over values representing symmetric set difference, e.g., values in `self` or `other` but not both, in ascending order.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut a = SGSet::new();
/// a.insert(1);
/// a.insert(2);
///
/// let mut b = SGSet::new();
/// b.insert(2);
/// b.insert(3);
///
/// let sym_diff: Vec<_> = a.symmetric_difference(&b).cloned().collect();
/// assert_eq!(sym_diff, [1, 3]);
/// ```
pub fn symmetric_difference<'a>(&'a self, other: &'a SGSet<T>) -> ElemRefIter<T>
where
T: Ord,
{
let mut sym_diff = ElemRefVec::new();
for val in self {
if !other.contains(val) {
sym_diff.push(val);
}
}
for val in other {
if !self.contains(val) {
sym_diff.push(val);
}
}
sym_diff.sort_unstable();
sym_diff.into_iter()
}
/// Returns an iterator over values representing set intersection, e.g., values in both `self` and `other`, in ascending order.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut a = SGSet::new();
/// a.insert(1);
/// a.insert(2);
///
/// let mut b = SGSet::new();
/// b.insert(2);
/// b.insert(3);
///
/// let intersection: Vec<_> = a.intersection(&b).cloned().collect();
/// assert_eq!(intersection, [2]);
/// ```
pub fn intersection(&self, other: &SGSet<T>) -> ElemRefIter<T>
where
T: Ord,
{
let mut self_iter = self.into_iter();
let mut other_iter = other.into_iter();
let mut opt_self_val = self_iter.next();
let mut opt_other_val = other_iter.next();
let mut intersect = ElemRefVec::new();
// Linear time
while let (Some(self_val), Some(other_val)) = (opt_self_val, opt_other_val) {
match self_val.cmp(other_val) {
Ordering::Less => {
opt_self_val = self_iter.next();
}
Ordering::Equal => {
intersect.push(self_val);
opt_self_val = self_iter.next();
opt_other_val = other_iter.next();
}
Ordering::Greater => {
opt_other_val = other_iter.next();
}
}
}
intersect.into_iter()
}
/// Returns an iterator over values representing set union, e.g., values in `self` or `other`, in ascending order.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut a = SGSet::new();
/// a.insert(1);
///
/// let mut b = SGSet::new();
/// b.insert(2);
///
/// let union: Vec<_> = a.union(&b).cloned().collect();
/// assert_eq!(union, [1, 2]);
/// ```
pub fn union<'a>(&'a self, other: &'a SGSet<T>) -> ElemRefIter<T>
where
T: Ord,
{
let mut union = ElemRefVec::new();
for val in self {
union.push(val);
}
for val in other {
if !union.contains(&val) {
union.push(val);
}
}
union.sort_unstable();
union.into_iter()
}
/// Returns `true` if the set contains no elements.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let mut v = SGSet::new();
/// assert!(v.is_empty());
/// v.insert(1);
/// assert!(!v.is_empty());
/// ```
pub fn is_empty(&self) -> bool {
self.bst.is_empty()
}
/// Returns `true` if `self` has no elements in common with other (empty intersection).
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
/// let a: SGSet<_> = [1, 2, 3].iter().cloned().collect();
/// let mut b = SGSet::new();
///
/// assert_eq!(a.is_disjoint(&b), true);
/// b.insert(4);
/// assert_eq!(a.is_disjoint(&b), true);
/// b.insert(1);
/// assert_eq!(a.is_disjoint(&b), false);
/// ```
pub fn is_disjoint(&self, other: &SGSet<T>) -> bool
where
T: Ord,
{
self.intersection(other).count() == 0
}
/// Returns `true` if `self` is a subset of `other`, e.g., `other` contains at least all the values in `self`.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let sup: SGSet<_> = [1, 2, 3].iter().cloned().collect();
/// let mut set = SGSet::new();
///
/// assert_eq!(set.is_subset(&sup), true);
/// set.insert(2);
/// assert_eq!(set.is_subset(&sup), true);
/// set.insert(4);
/// assert_eq!(set.is_subset(&sup), false);
/// ```
pub fn is_subset(&self, other: &SGSet<T>) -> bool
where
T: Ord,
{
self.intersection(other).count() == self.len()
}
/// Returns `true` if `self` is a superset of `other`, e.g., `self` contains at least all the values in `other`.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let sub: SGSet<_> = [1, 2].iter().cloned().collect();
/// let mut set = SGSet::new();
///
/// assert_eq!(set.is_superset(&sub), false);
///
/// set.insert(0);
/// set.insert(1);
/// assert_eq!(set.is_superset(&sub), false);
///
/// set.insert(2);
/// assert_eq!(set.is_superset(&sub), true);
/// ```
pub fn is_superset(&self, other: &SGSet<T>) -> bool
where
T: Ord,
{
other.is_subset(self)
}
}
// Convenience Traits --------------------------------------------------------------------------------------------------
// Default constructor
impl<T: Ord> Default for SGSet<T> {
fn default() -> Self {
Self::new()
}
}
// Construction iterator
impl<T: Ord> FromIterator<T> for SGSet<T> {
fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self {
let mut sgs = SGSet::new();
for v in iter {
#[cfg(not(feature = "high_assurance"))]
sgs.insert(v);
#[cfg(feature = "high_assurance")]
sgs.insert(v).expect("Stack-storage capacity exceeded!");
}
sgs
}
}
// Extension from iterator
impl<T: Ord> Extend<T> for SGSet<T> {
fn extend<TreeIter: IntoIterator<Item = T>>(&mut self, iter: TreeIter) {
iter.into_iter().for_each(move |elem| {
#[cfg(not(feature = "high_assurance"))]
self.insert(elem);
#[cfg(feature = "high_assurance")]
self.insert(elem).expect("Stack-storage capacity exceeded!");
});
}
/*
TODO: currently unstable: https://github.com/rust-lang/rust/issues/72631
fn extend_one(&mut self, elem: T) {
self.insert(elem);
}
*/
}
// Extension from reference iterator
impl<'a, T: 'a + Ord + Copy> Extend<&'a T> for SGSet<T> {
fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) {
self.extend(iter.into_iter().cloned());
}
/*
TODO: currently unstable: https://github.com/rust-lang/rust/issues/72631
fn extend_one(&mut self, &elem: &'a T) {
self.insert(elem);
}
*/
}
// Iterators -----------------------------------------------------------------------------------------------------------
// Reference iterator
impl<'a, T: Ord> IntoIterator for &'a SGSet<T> {
type Item = &'a T;
type IntoIter = Iter<'a, T>;
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
/// Reference iterator wrapper
pub struct Iter<'a, T: Ord> {
ref_iter: TreeIter<'a, T, ()>,
}
impl<'a, T: Ord> Iter<'a, T> {
pub fn new(set: &'a SGSet<T>) -> Self {
Iter {
ref_iter: TreeIter::new(&set.bst),
}
}
}
impl<'a, T: Ord> Iterator for Iter<'a, T> {
type Item = &'a T;
fn next(&mut self) -> Option<Self::Item> {
self.ref_iter.next().map(|(k, _)| k)
}
}
// Consuming iterator
impl<T: Ord> IntoIterator for SGSet<T> {
type Item = T;
type IntoIter = ConsumingIter<T>;
fn into_iter(self) -> Self::IntoIter {
ConsumingIter::new(self)
}
}
/// Consuming iterator wrapper
pub struct ConsumingIter<T: Ord> {
cons_iter: TreeConsumingIter<T, ()>,
}
impl<T: Ord> ConsumingIter<T> {
pub fn new(set: SGSet<T>) -> Self {
ConsumingIter {
cons_iter: TreeConsumingIter::new(set.bst),
}
}
}
impl<T: Ord> Iterator for ConsumingIter<T> {
type Item = T;
fn next(&mut self) -> Option<Self::Item> {
self.cons_iter.next().map(|(k, _)| k)
}
}
// Operator Overloading ------------------------------------------------------------------------------------------------
impl<T: Ord + Clone> Sub<&SGSet<T>> for &SGSet<T> {
type Output = SGSet<T>;
/// Returns the difference of `self` and `rhs` as a new `SGSet<T>`.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let a: SGSet<_> = vec![1, 2, 3].into_iter().collect();
/// let b: SGSet<_> = vec![3, 4, 5].into_iter().collect();
///
/// let result = &a - &b;
/// let result_vec: Vec<_> = result.into_iter().collect();
/// assert_eq!(result_vec, [1, 2]);
/// ```
fn sub(self, rhs: &SGSet<T>) -> SGSet<T> {
self.difference(rhs).cloned().collect()
}
}
impl<T: Ord + Clone> BitAnd<&SGSet<T>> for &SGSet<T> {
type Output = SGSet<T>;
/// Returns the intersection of `self` and `rhs` as a new `SGSet<T>`.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let a: SGSet<_> = vec![1, 2, 3].into_iter().collect();
/// let b: SGSet<_> = vec![2, 3, 4].into_iter().collect();
///
/// let result = &a & &b;
/// let result_vec: Vec<_> = result.into_iter().collect();
/// assert_eq!(result_vec, [2, 3]);
/// ```
fn bitand(self, rhs: &SGSet<T>) -> SGSet<T> {
self.intersection(rhs).cloned().collect()
}
}
impl<T: Ord + Clone> BitOr<&SGSet<T>> for &SGSet<T> {
type Output = SGSet<T>;
/// Returns the union of `self` and `rhs` as a new `SGSet<T>`.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let a: SGSet<_> = vec![1, 2, 3].into_iter().collect();
/// let b: SGSet<_> = vec![3, 4, 5].into_iter().collect();
///
/// let result = &a | &b;
/// let result_vec: Vec<_> = result.into_iter().collect();
/// assert_eq!(result_vec, [1, 2, 3, 4, 5]);
/// ```
fn bitor(self, rhs: &SGSet<T>) -> SGSet<T> {
self.union(rhs).cloned().collect()
}
}
impl<T: Ord + Clone> BitXor<&SGSet<T>> for &SGSet<T> {
type Output = SGSet<T>;
/// Returns the symmetric difference of `self` and `rhs` as a new `SGSet<T>`.
///
/// # Examples
///
/// ```
/// use scapegoat::SGSet;
///
/// let a: SGSet<_> = vec![1, 2, 3].into_iter().collect();
/// let b: SGSet<_> = vec![2, 3, 4].into_iter().collect();
///
/// let result = &a ^ &b;
/// let result_vec: Vec<_> = result.into_iter().collect();
/// assert_eq!(result_vec, [1, 4]);
/// ```
fn bitxor(self, rhs: &SGSet<T>) -> SGSet<T> {
self.symmetric_difference(rhs).cloned().collect()
}
}