We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f451c7 commit c65b6dbCopy full SHA for c65b6db
embassy-sync/src/priority_channel.rs
@@ -72,17 +72,6 @@ where
72
self.channel.poll_ready_to_send(cx)
73
}
74
75
- /// Removes the elements from the channel that satisfy the predicate.
76
- ///
77
- /// See [`PriorityChannel::remove_if()`]
78
- pub fn remove_if<F>(&self, predicate: F)
79
- where
80
- F: Fn(&T) -> bool,
81
- T: Clone,
82
- {
83
- self.channel.remove_if(predicate)
84
- }
85
-
86
/// Returns the maximum number of elements the channel can hold.
87
///
88
/// See [`PriorityChannel::capacity()`]
0 commit comments