tokyocabinet-haskell-0.0.5: Haskell binding of Tokyo Cabinet

Database.TokyoCabinet.List

Documentation

new2 :: Int -> IO (List a)Source

copy :: List a -> IO (List a)Source

get :: Storable a => List a -> Int -> IO (Maybe a)Source

push :: Storable a => List a -> a -> IO ()Source

pop :: Storable a => List a -> IO (Maybe a)Source

unshift :: Storable a => List a -> a -> IO ()Source

shift :: Storable a => List a -> IO (Maybe a)Source

insert :: Storable a => List a -> Int -> a -> IO ()Source

remove :: Storable a => List a -> Int -> IO (Maybe a)Source

over :: Storable a => List a -> Int -> a -> IO ()Source

lsearch :: Storable a => List a -> a -> IO IntSource

bsearch :: Storable a => List a -> a -> IO IntSource

data List a Source

Instances