@hackage handle-like0.1.0.3
HandleLike class
Categories
License
BSD-3-Clause
Maintainer
Yoshikuni Jujo <PAF01143@nifty.ne.jp>
Links
Versions
Installation
Dependencies (2)
- base >=4 && <5
- bytestring >=0.10 && <0.11 Show all…
Dependents (5)
@hackage/peyotls, @hackage/xmpipe, @hackage/acme-everything, @hackage/xml-push, @hackage/tighttp
A tiny package. It's contain the following class.
class HandleLike h where
type HandleMonad h
type DebugLevel h
hlPut :: h -> ByteString -> HandleMonad h ()
hlGet :: h -> Int -> HandleMonad h ByteString
hlGetByte :: h -> HandleMonad h Word8
hlGetLine :: h -> HandleMonad h ByteString
hlGetContent :: h -> HandleMonad h ByteString
hlFlush :: h -> HandleMonad h ()
hlClose :: h -> HandleMonad h ()
hlDebug :: h -> DebugLevel h -> HandleMonad h ()
hlError :: h -> ByteString -> HandleMonad h aMinimal complete difinition: HandleMonad, hlPut, hlGet and hlClose.