I really wish that Google was better at searching for syntax:

decades         :: (RealFrac a) => a -> a -> [a] -> Array Int Int
decades a b     =  hist (0,9) . map decade
                   where decade x = floor ((x - a) * s)
                         s        = 10 / (b - a)
link|improve this question

2  
A period can also be a namespace separator (e.g. Data.Vector.Unboxed.length). – KennyTM Mar 21 '10 at 9:59
4  
For searching for information about Haskell code, I heartily recommend Hoogle (haskell.org/hoogle), a search engine for types (e.g. searching for (a -> b) -> [a] -> [b] turns up map) and function/operator names (so searching for map turns up map, and searching for . turns up the Prelude function composition operator (.)). There's also Hayoo! (holumbus.fh-wedel.de/hayoo/hayoo.html), which has less of an emphasis on types but indexes more packages. – Antal S-Z Mar 21 '10 at 20:10
possible duplicate of Dot Operator in Haskell: need more explanation – Don Stewart Apr 18 '11 at 22:53
feedback

6 Answers

up vote 11 down vote accepted

f(g(x))

is

in mathematics : f ∘ g (x)

in haskell : ( f . g ) (x)

link|improve this answer
2  
FYI: I've change the o to the actual ring symbol used in Mathematics. – KennyTM Mar 21 '10 at 9:56
Thanks Kenny :) How did you do it? – Pratik Deoghare Mar 21 '10 at 10:04
1  
@TheMachine, perhaps, he used a cheatsheet (check this: tlt.its.psu.edu/suggestions/international/bylanguage/…) – Pavel Shved Mar 21 '10 at 10:10
@TheMachineCharmer: In Windows, open charmap.exe and search for "Ring". Similar for Mac but use Character Viewer. Should be similar for other OS too. – KennyTM Mar 21 '10 at 10:10
Ya g∘t it. Thanks! ;) – Pratik Deoghare Mar 21 '10 at 10:27
show 4 more comments
feedback

. is a higher order function for function composition.

Prelude> :type (.)
(.) :: (b -> c) -> (a -> b) -> a -> c
Prelude> (*2) . (+1) $ 1
4
Prelude> ((*2) . (+1)) 1
4
link|improve this answer
feedback

It means function composition. See this question.

Note also the f.g.h x is not equivalent to (f.g.h) x, because it is interpreted as f.g.(h x) which won't typecheck unless (h x) returns a function.

This is where the $ operator can come in handy: f.g.h $ x turns x from being a parameter to h to being a parameter to the whole expression. And so it becomes equivalent to f(g(h x)) and the pipe works again.

link|improve this answer
But, that is crazy! – Casebash Mar 21 '10 at 10:10
2  
You just need to remember that the function application operator (space) has the highest priority. After some time it will all make sense. – Alex Jenter Mar 21 '10 at 10:37
feedback

It is a function composition: link

link|improve this answer
feedback

"The period is a function composition operator. In general terms, where f and g are functions, (f . g) x means the same as f (g x). In other words, the period is used to take the result from the function on the right, feed it as a parameter to the function on the left, and return a new function that represents this computation."

Source: Google search 'haskell period operator'

link|improve this answer
feedback

Function composition (the page is pretty long, use search)

link|improve this answer
1  
Look at this add-on: addons.mozilla.org/en-US/firefox/addon/416 – Casebash Mar 21 '10 at 9:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.