ptr-peeker 0.1.0.1 → 0.2
raw patch · 2 files changed
+1/−4 lines, 2 files
Files
ptr-peeker.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: ptr-peeker-version: 0.1.0.1+version: 0.2 synopsis: High-performance composable binary data deserializers description: A high-performance binary data deserialization library providing a type-safe, flexible and composable abstraction over manipulations on pointers.
src/library/PtrPeeker/Variable.hs view
@@ -126,9 +126,6 @@ Variable lPeek >>= rk = Variable $ \fail proceed -> lPeek fail $ \lr -> case rk lr of Variable rPeek -> rPeek fail proceed -instance MonadIO Variable where- liftIO io = Variable $ \_ proceed p avail -> io >>= \res -> proceed res p avail- -- | -- Check whether more data is available. hasMore :: Variable Bool