JYU-Utils 0.1.1 → 0.1.1.1
raw patch · 4 files changed
+4/−4 lines, 4 files
Files
- JYU-Utils.cabal +1/−1
- Utils/MonadRandom.hs +1/−2
- Utils/String.hs +1/−1
- Utils/Table.hs +1/−0
JYU-Utils.cabal view
@@ -1,5 +1,5 @@ Name: JYU-Utils-Version: 0.1.1+Version: 0.1.1.1 Synopsis: Some utility functions for JYU projects Description: List, function and monad utility functions. Includes an old variant of MonadRandom that is used in
Utils/MonadRandom.hs view
@@ -1,5 +1,4 @@-{-# OPTIONS_GHC -fglasgow-exts #-}-+{-#LANGUAGE GeneralizedNewtypeDeriving#-} -- Taken from haskell wiki: http://www.haskell.org/hawiki/MonadRandom module Utils.MonadRandom (
Utils/String.hs view
@@ -1,4 +1,4 @@-{-# OPTIONS -fglasgow-exts #-}+{-#LANGUAGE ScopedTypeVariables#-} module Utils.String where import Numeric
Utils/Table.hs view
@@ -1,3 +1,4 @@+{-#LANGUAGE ParallelListComp#-} module Utils.Table where import Prelude hiding (map) import Control.Monad