hdf-0.15: HDF: Uniform Rate Audio Signal Processing in Haskell

Safe HaskellSafe-Inferred
LanguageHaskell98

Sound.DF.Uniform.LL.Dot

Description

Elementary dot.

Synopsis

Documentation

ty_colour :: Maybe TypeRep -> String Source

Map from TypeRep to colour name.

map (ty_colour . Just) [int32_t,float_t] == ["orange","blue"]

w_bracket :: a -> a -> [a] -> [a] Source

Left & right bracket.

w_bracket '(' ')' "parentheses" == "(parentheses)"

dot_attr :: [(String, String)] -> String Source

Dot notation for key,value attributes.

dot_rec :: Id -> String -> [Either Int K] -> Maybe TypeRep -> String Source

Dot node as record. Constant values are drawn directly into input ports. The nm String has the df_ prefix removed for printing.

dot_rec 0 "nm" [] (Just float_t)

dot_rec_ar :: Int -> [Either Int K] Source

Make arguments input for dot_rec from arity.

dot_rec' :: Id -> String -> [Either Int K] -> TypeRep -> String Source

Variant where nil_t indicates no output.