From 09534a26572e74a7f44e1dbc231c0652900cac5b Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 1 Mar 2022 19:02:49 +0100 Subject: [PATCH] Add a TODO regarding inlining iterators --- src/buffer.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/buffer.rs b/src/buffer.rs index cb65916b..26fa1ee9 100644 --- a/src/buffer.rs +++ b/src/buffer.rs @@ -1,5 +1,7 @@ use std::marker::PhantomData; +// TODO: Does adding `#[inline]` to the .next() functions make any difference? + /// The audio buffers used during processing. This contains the output audio output buffers with the /// inputs already copied to the outputs. You can either use the iterator adapters to conveniently /// and efficiently iterate over the samples, or you can do your own thing using the raw audio