MCPcopy Create free account
hub / github.com/ChainSafe/Delorean-Protocol / remove_many

Method remove_many

fendermint/eth/api/src/cache.rs:62–72  ·  view source on GitHub ↗
(&self, keys: I)

Source from the content-addressed store, hash-verified

60 }
61
62 pub fn remove_many<'a, I>(&self, keys: I)
63 where
64 I: Iterator<Item = &'a K>,
65 K: 'a,
66 {
67 self.with(|c| {
68 for key in keys {
69 c.remove(key);
70 }
71 })
72 }
73
74 pub fn with<F, T>(&self, f: F) -> T
75 where

Callers

nothing calls this directly

Calls 2

withMethod · 0.80
removeMethod · 0.45

Tested by

no test coverage detected