Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. type GetLastError = Document

    mongoDB Database.MongoDB.Query

    Parameters for getLastError command. For example ["w" =: 2] tells the server to wait for the write to reach at least two servers in replica set before acknowledging. See http://www.mongodb.org/display/DOCS/Last+Error+Commands for more options.

  2. shiftLastN :: WriteBuffer -> Int -> Int -> IO ()

    network-byte-order Network.ByteOrder

    Shifting the N-bytes area just before the current pointer (the 3rd argument). If the second argument is positive, shift it to right. If it is negative, shift it to left. offset moves as if it is sticky to the area.

    >>> withWriteBuffer 16 $ \wbuf -> copyByteString wbuf "ABCD" >> shiftLastN wbuf 1 3
    "ABBCD"
    
    >>> withWriteBuffer 16 $ \wbuf -> copyByteString wbuf "ABCD" >> shiftLastN wbuf 2 3
    "ABCBCD"
    
    >>> withWriteBuffer 16 $ \wbuf -> copyByteString wbuf "ABCDE" >> shiftLastN wbuf (-2) 3 >> ff wbuf 2
    "CDEDE"
    

  3. getLast :: Last a -> Maybe a

    optparse-generic Options.Generic

    No documentation available.

  4. unsafeLast :: Vector a -> a

    rebase Rebase.Data.Vector

    No documentation available.

  5. unsafeLastM :: Monad m => Vector a -> m a

    rebase Rebase.Data.Vector

    No documentation available.

  6. unsafeLast :: Vector v a => v a -> a

    rebase Rebase.Data.Vector.Generic

    No documentation available.

  7. unsafeLastM :: (Vector v a, Monad m) => v a -> m a

    rebase Rebase.Data.Vector.Generic

    No documentation available.

  8. unsafeLast :: Prim a => Vector a -> a

    rebase Rebase.Data.Vector.Primitive

    No documentation available.

  9. unsafeLastM :: (Prim a, Monad m) => Vector a -> m a

    rebase Rebase.Data.Vector.Primitive

    No documentation available.

  10. unsafeLast :: Storable a => Vector a -> a

    rebase Rebase.Data.Vector.Storable

    No documentation available.

Page 93 of many | Previous | Next