Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. imapM :: forall m a b (n :: Nat) . (Monad m, Storable a, Storable b) => (Finite n -> a -> m b) -> Vector n a -> m (Vector n b)

    vector-sized Data.Vector.Storable.Sized

    O(n) Apply the monadic action to every element of a vector and its index, yielding a vector of results.

  2. imapM_ :: forall m a (n :: Nat) b . (Monad m, Storable a) => (Finite n -> a -> m b) -> Vector n a -> m ()

    vector-sized Data.Vector.Storable.Sized

    O(n) Apply the monadic action to every element of a vector and its index, ignoring the results.

  3. concatMap :: forall a b (m :: Nat) (n :: Nat) . (Unbox a, Unbox b) => (a -> Vector m b) -> Vector n a -> Vector (n * m) b

    vector-sized Data.Vector.Unboxed.Sized

    O(n*m) Map a function over a vector and concatenate the results. The function is required to always return the same length vector.

  4. imap :: forall a b (n :: Nat) . (Unbox a, Unbox b) => (Finite n -> a -> b) -> Vector n a -> Vector n b

    vector-sized Data.Vector.Unboxed.Sized

    O(n) Apply a function to every element of a vector and its index.

  5. imapM :: forall m a b (n :: Nat) . (Monad m, Unbox a, Unbox b) => (Finite n -> a -> m b) -> Vector n a -> m (Vector n b)

    vector-sized Data.Vector.Unboxed.Sized

    O(n) Apply the monadic action to every element of a vector and its index, yielding a vector of results.

  6. imapM_ :: forall m a (n :: Nat) b . (Monad m, Unbox a) => (Finite n -> a -> m b) -> Vector n a -> m ()

    vector-sized Data.Vector.Unboxed.Sized

    O(n) Apply the monadic action to every element of a vector and its index, ignoring the results.

  7. checkMMap :: (Monad m, RenderMessage (HandlerSite m) msg) => (a -> m (Either msg b)) -> (b -> a) -> Field m a -> Field m b

    yesod-form Yesod.Form.Functions

    Same as checkM, but modifies the datatype. In order to make this work, you must provide a function to convert back from the new datatype to the old one (the second argument to this function). Since 1.1.2

  8. keymapProcessA :: HasAttributes c => Lens' c KeymapProcess

    yi-core Yi.Buffer.Misc

    No documentation available.

  9. modeKeymap :: Mode syntax -> KeymapSet -> KeymapSet

    yi-core Yi.Buffer.Misc

    Buffer-local keymap modification

  10. modeKeymapA :: forall syntax f . Functor f => ((KeymapSet -> KeymapSet) -> f (KeymapSet -> KeymapSet)) -> Mode syntax -> f (Mode syntax)

    yi-core Yi.Buffer.Misc

    No documentation available.

Page 538 of many | Previous | Next