]> Git — Sourcephile - tmp/julm/arpeggigon.git/blob - Reactogon/Auxiliary.hs
Moved tests.
[tmp/julm/arpeggigon.git] / Reactogon / Auxiliary.hs
1 module Auxiliary ( dupl
2 )where
3
4 import Control.Arrow
5
6 dupl :: (Arrow a) => a b c -> a (b,b) (c,c)
7 dupl f = f *** f