Searching for put

Control.Monad.State.Classput :: MonadState s m => s -> m ()
mtl
Network.HTTP.BasePUT :: RequestMethod
HTTP
PreludeputChar :: Char -> IO ()
base
Write a character to the standard output device (same as hPutChar stdout).
System.IOputChar :: Char -> IO ()
base
Write a character to the standard output device (same as hPutChar stdout).
Control.Concurrent.MVarputMVar :: MVar a -> a -> IO ()
base
Put a value into an MVar. If the MVar is currently full, putMVar will wait until it becomes empty.

There are two further important properties of putMVar:

* putMVar is single-wakeup. That is, if there are multiple threads blocked in putMVar, and the MVar becomes empty, only one thread will be woken up. The runtime guarantees that the woken thread completes its putMVar operation.
* When multiple threads are blocked on an MVar, they are woken up in FIFO order. This is useful for providing fairness properties of abstractions built using MVars.
Text.Parsec.PrimputState :: Monad m => u -> ParsecT s u m ()
parsec
putState st set the user state to st.
PreludeputStr :: String -> IO ()
base
Write a string to the standard output device (same as hPutStr stdout).
Data.ByteStringputStr :: ByteString -> IO ()
bytestring
Write a ByteString to stdout
System.IOputStr :: String -> IO ()
base
Write a string to the standard output device (same as hPutStr stdout).
Data.ByteString.Char8putStr :: ByteString -> IO ()
bytestring
Write a ByteString to stdout
Data.ByteString.LazyputStr :: ByteString -> IO ()
bytestring
Write a ByteString to stdout
Data.ByteString.Lazy.Char8putStr :: ByteString -> IO ()
bytestring
Write a ByteString to stdout
PreludeputStrLn :: String -> IO ()
base
The same as putStr, but adds a newline character.
Data.ByteStringputStrLn :: ByteString -> IO ()
bytestring
Write a ByteString to stdout, appending a newline byte
System.IOputStrLn :: String -> IO ()
base
The same as putStr, but adds a newline character.
Data.ByteString.Char8putStrLn :: ByteString -> IO ()
bytestring
Write a ByteString to stdout, appending a newline byte
Data.ByteString.LazyputStrLn :: ByteString -> IO ()
bytestring
Write a ByteString to stdout, appending a newline byte
Data.ByteString.Lazy.Char8putStrLn :: ByteString -> IO ()
bytestring
Write a ByteString to stdout, appending a newline byte
Test.HUnit.Textdata PutText st
HUnit
Test.HUnit.TextPutText :: (String -> Bool -> st -> IO st) -> st -> PutText st
HUnit
Show more results