What does # mean in this code ? (from Data.List)

findIndices p ls = loop 0# ls
                 where
                   loop _ [] = []
                   loop n (x:xs) | p x       = I# n : loop (n +# 1#) xs
                                      | otherwise = loop (n +# 1#) xs

-- 
View this message in context: 
http://haskell.1045720.n5.nabble.com/Operator-tp3299360p3299360.html
Sent from the Haskell - Haskell-Cafe mailing list archive at Nabble.com.

_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to