mod

mod :: Integral a => a -> a -> a
base Prelude
mod' :: Real a => a -> a -> a
base Data.Fixed
generalisation of mod to any instance of Real
ModifierLetter :: GeneralCategory
base Data.Char
Lm: Letter, Modifier
ModifierSymbol :: GeneralCategory
base Data.Char
Sk: Symbol, Modifier
modifyIOError :: (IOError -> IOError) -> IO a -> IO a
base System.IO.Error
Catch any IOError that occurs in the computation and throw a modified version.
modifyIORef :: IORef a -> (a -> a) -> IO ()
base Data.IORef
Mutate the contents of an IORef
modifyMVar :: MVar a -> (a -> IO (a, b)) -> IO b
base Control.Concurrent.MVar
A slight variation on modifyMVar_ that allows a value to be returned (b) in addition to the modified value of the MVar.
modifyMVar_ :: MVar a -> (a -> IO a) -> IO ()
base Control.Concurrent.MVar
A safe wrapper for modifying the contents of an MVar. Like withMVar, modifyMVar will replace the original contents of the MVar if an exception is raised during the operation.
modifySTRef :: STRef s a -> (a -> a) -> ST s ()
base Data.STRef.Lazy
modifySTRef :: STRef s a -> (a -> a) -> ST s ()
base Data.STRef
Mutate the contents of an STRef
data Mode
pretty Text.PrettyPrint.HughesPJ, pretty Text.PrettyPrint
Rendering mode.
data Mode :: *
haskell-src Language.Haskell.Pretty
Rendering mode.
mode :: Style -> Mode
pretty Text.PrettyPrint.HughesPJ, pretty Text.PrettyPrint, haskell-src Language.Haskell.Pretty
The rendering mode
Modelview :: GLsizei -> MatrixMode
OpenGL Graphics.Rendering.OpenGL.GL.CoordTrans
The modelview matrix stack of the specified vertex unit.
modificationTime :: FileStatus -> EpochTime
unix System.Posix.Files.ByteString, unix System.Posix.Files
Time of last modification.
ModifiedJulianDay :: Integer -> Day
time Data.Time.Calendar
Modifiers :: KeyState -> KeyState -> KeyState -> Modifiers
GLUT Graphics.UI.GLUT.Callbacks.Window
data Modifiers
GLUT Graphics.UI.GLUT.Callbacks.Window
The state of the keyboard modifiers
modify :: (Monoid w, Monad m) => (s -> s) -> RWST r w s m ()
transformers Control.Monad.Trans.RWS.Lazy, transformers Control.Monad.Trans.RWS.Strict
modify f is an action that updates the state to the result of applying f to the current state. *  f = get >>= (put . >  
modify :: Monad m => (s -> s) -> StateT s m ()
transformers Control.Monad.Trans.State.Lazy, transformers Control.Monad.Trans.State.Strict
modify f is an action that updates the state to the result of applying f to the current state. *  f = get >>= (put . >  

Show more results