Skip to content

Commit f521266

Browse files
committed
Add IntoIterator<Item = &Pk> for ConcretePolicy
1 parent 85d0f6c commit f521266

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

src/policy/concrete.rs

+25
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,31 @@ impl<Pk: MiniscriptKey> ForEachKey<Pk> for Policy<Pk> {
163163
}
164164
}
165165

166+
impl<'a, Pk: MiniscriptKey> IntoIterator for &'a Policy<Pk> {
167+
type Item = &'a Pk;
168+
type IntoIter = Box<dyn Iterator<Item = &'a Pk> + 'a>;
169+
170+
fn into_iter(self) -> Self::IntoIter {
171+
use std::iter;
172+
173+
match *self {
174+
Policy::Key(ref pk) => Box::new(iter::once(pk)),
175+
Policy::Threshold(_, ref subs) | Policy::And(ref subs) => {
176+
Box::new(subs.iter().map(|s| s.into_iter()).flatten())
177+
}
178+
Policy::Or(ref subs) => Box::new(subs.iter().map(|(_, s)| s.into_iter()).flatten()),
179+
Policy::Unsatisfiable
180+
| Policy::Trivial
181+
| Policy::Sha256(..)
182+
| Policy::Hash256(..)
183+
| Policy::Ripemd160(..)
184+
| Policy::Hash160(..)
185+
| Policy::After(..)
186+
| Policy::Older(..) => Box::new(iter::empty()),
187+
}
188+
}
189+
}
190+
166191
impl<Pk: MiniscriptKey> Policy<Pk> {
167192
/// Convert a policy using one kind of public key to another
168193
/// type of public key

0 commit comments

Comments
 (0)