1
0
Fork 0

Add a TODO regarding inlining iterators

This commit is contained in:
Robbert van der Helm 2022-03-01 19:02:49 +01:00
parent 92429e8b09
commit 09534a2657

View file

@ -1,5 +1,7 @@
use std::marker::PhantomData; 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 /// 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 /// 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 /// and efficiently iterate over the samples, or you can do your own thing using the raw audio