HaskellWiki

Haskell | Wiki community | Recent changes
Random page | Special pages

 

Not logged in
Log in | Help

Declaration vs. expression style

(Redirected from Expression style)

Categories: Style | Syntax

There are two main styles of writing functional programs, which are both supported by Haskell mainly because several language designers preferred these different styles.

In the declaration style you formulate an algorithm in terms of several equations that shall be satisfied. In the expression style you compose big expressions from small expressions.

Contents

1 Comparison

As illustration for the two styles, Simon Peyton Jones give two implementations of the Prelude function filter:

filter :: (a -> Bool) -> [a] -> [a]

1.1 Declaration style

filter p [] = []
filter p (x:xs)
   | p x = x : rest
   | otherwise = rest
   where
     rest = filter p xs

1.2 Expression style

filter =
   \p -> \ xs ->
      case xs of
         [] -> []
         (x:xs) ->
            let rest = filter p xs
            in  if p x
                  then x : rest
                  else rest

2 Syntactic elements

There are characteristic elements of both styles.

Declaration style Expression-style
where clause let expression
Function arguments on left hand side: f x = x*x Lambda abstraction: f = \x -> x*x
Pattern matching in function definitions: f [] = 0 case expression: f xs = case xs of [] -> 0
Guards on function definitions: f [x] | x>0 = 'a' if expression: f [x] = if x>0 then 'a' else ...

3 See also

Retrieved from "http://haskell.org/haskellwiki/Declaration_vs._expression_style"

This page has been accessed 3,271 times. This page was last modified 12:58, 3 July 2007. Recent content is available under a simple permissive license.