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.
2 parents 50f26fa + f134836 commit 5df8d11Copy full SHA for 5df8d11
src/worklet.rs
@@ -40,6 +40,10 @@ impl<'a> AudioParamValues<'a> {
40
let id = self.map.get(name).unwrap();
41
self.values.get(id)
42
}
43
+
44
+ pub fn keys(&self) -> impl Iterator<Item = &str> {
45
+ self.map.keys().map(|s| s.as_ref())
46
+ }
47
48
49
/// Audio processing code that runs on the audio rendering thread.
0 commit comments