synthesizer-llvm-0.7.0.1: Efficient signal processing using runtime compilation

Safe HaskellNone
LanguageHaskell98

Synthesizer.LLVM.Causal.ProcessValue

Description

This module provides functions similar to Synthesizer.LLVM.Causal.Process but expects functions that operate on T. This way you can use common arithmetic operators instead of LLVM assembly functions.

Documentation

map :: C process => (T a -> T b) -> process a b Source

zipWith :: C process => (T a -> T b -> T c) -> process (a, b) c Source

mapAccum :: (C process, C s) => (T a -> T s -> (T b, T s)) -> T s -> process a b Source