Yeah, I tried this last night. The problem is that it doesn't actually make Arc<FFT>Sync because FFT isn't Sync. The solution is to add + Send + Sync to the FFT trait. I did that in the change_rc_to_arc branch. I'll merge this PR into that branch (since this brings some documentation changes), and I'll open a new PR.
Yeah, I tried this last night. The problem is that it doesn't actually make
Arc<FFT>
Sync
becauseFFT
isn'tSync
. The solution is to add+ Send + Sync
to theFFT
trait. I did that in the change_rc_to_arc branch. I'll merge this PR into that branch (since this brings some documentation changes), and I'll open a new PR.