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. identifierVersion :: Identifier -> Maybe String

    hakyll Hakyll.Core.Identifier

    No documentation available.

  2. idRoute :: Routes

    hakyll Hakyll.Core.Routes

    An "identity" route that interprets the identifier (of the item being processed) as the destination filepath. This identifier is normally the filepath of the source file being processed. See Identifier for details.

    Examples

    Route when using match
    -- e.g. file on disk: '<project-directory>/posts/hakyll.md'
    
    -- 'hakyll.md' source file implicitly gets filepath as identifier:
    -- 'posts/hakyll.md'
    match "posts/*" $ do
    
    -- compilation result is written to '<destination-directory>/posts/hakyll.md'
    route idRoute
    
    compile getResourceBody
    

  3. identity :: LambdaContext -> Maybe CognitoIdentity

    hal AWS.Lambda.Context

    No documentation available.

  4. identityId :: CognitoIdentity -> Text

    hal AWS.Lambda.Context

    No documentation available.

  5. identityPoolId :: CognitoIdentity -> Text

    hal AWS.Lambda.Context

    No documentation available.

  6. identity :: RequestContext a -> Identity

    hal AWS.Lambda.Events.ApiGateway.ProxyRequest

    No documentation available.

  7. identity :: DynamicContext -> Maybe CognitoIdentity

    hal AWS.Lambda.Internal

    No documentation available.

  8. ident :: forall (s :: [Nat]) a . (KnownNats s, Additive a, Multiplicative a) => Array s a

    harpie-numhask Harpie.NumHask

    The identity array.

    >>> pretty $ ident @[3,3]
    [[1,0,0],
    [0,1,0],
    [0,0,1]]
    

  9. identifyForm :: forall (m :: Type -> Type) a . Monad m => Text -> (Markup -> MForm m (FormResult a, WidgetFor (HandlerSite m) ())) -> Markup -> MForm m (FormResult a, WidgetFor (HandlerSite m) ())

    hledger-web Hledger.Web.Import

    Creates a hidden field on the form that identifies it. This identification is then used to distinguish between missing and wrong form data when a single handler contains more than one form. For instance, if you have the following code on your handler:

    ((fooRes, fooWidget), fooEnctype) <- runFormPost fooForm
    ((barRes, barWidget), barEnctype) <- runFormPost barForm
    
    Then replace it with
    ((fooRes, fooWidget), fooEnctype) <- runFormPost $ identifyForm "foo" fooForm
    ((barRes, barWidget), barEnctype) <- runFormPost $ identifyForm "bar" barForm
    
    Note that it's your responsibility to ensure that the identification strings are unique (using the same one twice on a single handler will not generate any errors). This allows you to create a variable number of forms and still have them work even if their number or order change between the HTML generation and the form submission.

  10. id2sym :: RID -> RValue

    hruby Foreign.Ruby.Bindings

    No documentation available.

Page 319 of many | Previous | Next