Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
sebffischer committed Oct 17, 2024
1 parent fd12d9e commit ba646ac
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions src/object/vector/reptype.rs
Original file line number Diff line number Diff line change
Expand Up @@ -400,9 +400,9 @@ impl<T: Clone + Default> RepType<T> {
match self.clone() {
RepType::Subset(values, ..) => {
let iter = Box::new(self.iter_subset_indices());
for x in iter {
dbg!(&x);
}
// for x in iter {
// dbg!(&x);
// }
let iter = Box::new(self.iter_subset_indices());
let values = values.inner_rc();

Expand Down Expand Up @@ -607,12 +607,7 @@ impl<T: Clone + Default> RepType<T> {
match self {
RepType::Subset(v, Subsets(s), _) => match s.as_slice() {
[] => v.borrow().len(),
_ => {
dbg!(&s[0]);
self.values_ref().iter().count(); // _ => self.materialize_inplace().len(),
println!("Wupsie");
todo!()
}
_ => self.values_ref().iter().count(),
},
}
}
Expand Down

0 comments on commit ba646ac

Please sign in to comment.