Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. MsgInvalidHexColorFormat :: Text -> FormMessage

    yesod-form Yesod.Form.Types

    No documentation available.

  2. MsgInvalidTimeFormat :: FormMessage

    yesod-form Yesod.Form.Types

    No documentation available.

  3. type WForm (m :: Type -> Type) a = MForm WriterT [FieldView HandlerSite m] m a

    yesod-form Yesod.Form.Types

    MForm variant stacking a WriterT. The following code example using a monadic form MForm:

    formToAForm $ do
    (field1F, field1V) <- mreq textField MsgField1 Nothing
    (field2F, field2V) <- mreq (checkWith field1F textField) MsgField2 Nothing
    (field3F, field3V) <- mreq (checkWith field1F textField) MsgField3 Nothing
    return
    ( MyForm <$> field1F <*> field2F <*> field3F
    , [field1V, field2V, field3V]
    )
    
    Could be rewritten as follows using WForm:
    wFormToAForm $ do
    field1F <- wreq textField MsgField1 Nothing
    field2F <- wreq (checkWith field1F textField) MsgField2 Nothing
    field3F <- wreq (checkWith field1F textField) MsgField3 Nothing
    return $ MyForm <$> field1F <*> field2F <*> field3F
    

  4. unAForm :: AForm (m :: Type -> Type) a -> (HandlerSite m, [Text]) -> Maybe (Env, FileEnv) -> Ints -> m (FormResult a, [FieldView (HandlerSite m)] -> [FieldView (HandlerSite m)], Ints, Enctype)

    yesod-form Yesod.Form.Types

    No documentation available.

  5. hasWhiteSpaceBefore :: BufferM Bool

    yi-core Yi.Buffer.HighLevel

    No documentation available.

  6. transformB :: (YiString -> YiString) -> TextUnit -> Direction -> BufferM ()

    yi-core Yi.Buffer.Normal

    Transforms the region given by TextUnit in the Direction with user-supplied function.

  7. transformB :: (YiString -> YiString) -> TextUnit -> Direction -> BufferM ()

    yi-core Yi.Buffer.TextUnit

    Transforms the region given by TextUnit in the Direction with user-supplied function.

  8. displayHelpFor :: Text -> YiM ()

    yi-core Yi.Command.Help

    Displays help for a given name, or help index, if no name is given

  9. hasWhiteSpaceBefore :: BufferM Bool

    yi-core Yi.Config.Simple

    No documentation available.

  10. transformB :: (YiString -> YiString) -> TextUnit -> Direction -> BufferM ()

    yi-core Yi.Config.Simple

    Transforms the region given by TextUnit in the Direction with user-supplied function.

Page 590 of many | Previous | Next