Yampa-0.10.6.2: Library for programming hybrid systems.

Copyright(c) Antony Courtney and Henrik Nilsson Yale University 2003
LicenseBSD-style (see the LICENSE file in the distribution)
Maintainernilsson@cs.yale.edu
Stabilityprovisional
Portabilityportable
Safe HaskellSafe
LanguageHaskell98

FRP.Yampa.Miscellany

Description

Collection of entities that really should be part of the Haskell 98 prelude or simply have no better home.

Synopsis

Documentation

(#) :: (a -> b) -> (b -> c) -> a -> c infixl 9 Source #

Deprecated: Use Control.Arrow.(>>>) and Control.Arrow.(<<<).

dup :: a -> (a, a) Source #

mapFst :: (a -> b) -> [(a, c)] -> [(b, c)] Source #

Deprecated: mapFst is not used by Yampa and will be removed from the next release

mapSnd :: (a -> b) -> [(c, a)] -> [(c, b)] Source #

Deprecated: mapSnd is not used by Yampa and will be removed from the next release

sel3_1 :: (a, b, c) -> a Source #

Deprecated: Use the tuple package instead.

sel3_2 :: (a, b, c) -> b Source #

Deprecated: Use the tuple package instead.

sel3_3 :: (a, b, c) -> c Source #

Deprecated: Use the tuple package instead.

sel4_1 :: (a, b, c, d) -> a Source #

Deprecated: Use the tuple package instead.

sel4_2 :: (a, b, c, d) -> b Source #

Deprecated: Use the tuple package instead.

sel4_3 :: (a, b, c, d) -> c Source #

Deprecated: Use the tuple package instead.

sel4_4 :: (a, b, c, d) -> d Source #

Deprecated: Use the tuple package instead.

sel5_1 :: (a, b, c, d, e) -> a Source #

Deprecated: Use the tuple package instead.

sel5_2 :: (a, b, c, d, e) -> b Source #

Deprecated: Use the tuple package instead.

sel5_3 :: (a, b, c, d, e) -> c Source #

Deprecated: Use the tuple package instead.

sel5_4 :: (a, b, c, d, e) -> d Source #

Deprecated: Use the tuple package instead.

sel5_5 :: (a, b, c, d, e) -> e Source #

Deprecated: Use the tuple package instead.

fDiv :: RealFrac a => a -> a -> Integer infixl 7 Source #

Deprecated: These are not used by Yampa and will be removed.

fMod :: RealFrac a => a -> a -> a infixl 7 Source #

Deprecated: These are not used by Yampa and will be removed.

fDivMod :: RealFrac a => a -> a -> (Integer, a) Source #

Deprecated: These are not used by Yampa and will be removed.

arr2 :: Arrow a => (b -> c -> d) -> a (b, c) d Source #

arr3 :: Arrow a => (b -> c -> d -> e) -> a (b, c, d) e Source #

arr4 :: Arrow a => (b -> c -> d -> e -> f) -> a (b, c, d, e) f Source #

arr5 :: Arrow a => (b -> c -> d -> e -> f -> g) -> a (b, c, d, e, f) g Source #

lift0 :: Arrow a => c -> a b c Source #

lift1 :: Arrow a => (c -> d) -> a b c -> a b d Source #

lift2 :: Arrow a => (c -> d -> e) -> a b c -> a b d -> a b e Source #

lift3 :: Arrow a => (c -> d -> e -> f) -> a b c -> a b d -> a b e -> a b f Source #

lift4 :: Arrow a => (c -> d -> e -> f -> g) -> a b c -> a b d -> a b e -> a b f -> a b g Source #

lift5 :: Arrow a => (c -> d -> e -> f -> g -> h) -> a b c -> a b d -> a b e -> a b f -> a b g -> a b h Source #