Usage of ! in a Haskell type

Posted by bjwbell on Stack Overflow See other posts from Stack Overflow or by bjwbell
Published on 2010-04-13T19:24:23Z Indexed on 2010/04/13 19:32 UTC
Read the original article Hit count: 236

Filed under:

In Alex the generated boilerplate code includes

data AlexPosn = AlexPn !Int  -- absolute character offset
                       !Int  -- line number
                       !Int  -- column number

What does the ! in front of the Int indicate?

© Stack Overflow or respective owner

Related posts about haskell