Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. type MForm (m :: Type -> Type) a = RWST (Maybe (Env, FileEnv), HandlerSite m, [Lang]) Enctype Ints m a

    yesod-form Yesod.Form.Types

    No documentation available.

  2. MsgInvalidDatetimeFormat :: Text -> FormMessage

    yesod-form Yesod.Form.Types

    No documentation available.

  3. MsgInvalidHexColorFormat :: Text -> FormMessage

    yesod-form Yesod.Form.Types

    No documentation available.

  4. MsgInvalidTimeFormat :: FormMessage

    yesod-form Yesod.Form.Types

    No documentation available.

  5. 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
    

  6. 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.

  7. hasWhiteSpaceBefore :: BufferM Bool

    yi-core Yi.Buffer.HighLevel

    No documentation available.

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

    yi-core Yi.Buffer.Normal

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

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

    yi-core Yi.Buffer.TextUnit

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

  10. displayHelpFor :: Text -> YiM ()

    yi-core Yi.Command.Help

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

Page 592 of many | Previous | Next