If I have a Haskell ADT such as:
data Foo
= A Int Double
| B Bool [Integer]
| C (Maybe String) Float
the A, B, and C are referred to as data constructors; and sometimes as value constructors. But what is the correct name for:
- a "row/alternative": e.g.
B Bool [Integer]; and - a "field/element" of a "row/alternative": e.g. the
DoubleinA, or the[Integer]inB?
B : Bool -> [Integer] -> Fooas the constructor and its type.Booland[Integer]would be its arguments and e.g.[Integer]would be a single parameter or argument. But I'm not sure if these are the generally accepted names. – nobody Nov 1 '11 at 17:00