Skip to main content

luaur_analysis/methods/
weird_iter_weird_iter_unifier_alt_b.rs

1use crate::records::weird_iter::WeirdIter;
2
3impl WeirdIter {
4    pub fn weird_iter_weird_iter(&mut self, other: &WeirdIter) {
5        *self = other.clone();
6    }
7}