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.
identifierVersion :: Identifier -> Maybe Stringhakyll Hakyll.Core.Identifier No documentation available.
-
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
identity :: LambdaContext -> Maybe CognitoIdentityhal AWS.Lambda.Context No documentation available.
identityId :: CognitoIdentity -> Texthal AWS.Lambda.Context No documentation available.
identityPoolId :: CognitoIdentity -> Texthal AWS.Lambda.Context No documentation available.
identity :: RequestContext a -> Identityhal AWS.Lambda.Events.ApiGateway.ProxyRequest No documentation available.
identity :: DynamicContext -> Maybe CognitoIdentityhal AWS.Lambda.Internal No documentation available.
ident :: forall (s :: [Nat]) a . (KnownNats s, Additive a, Multiplicative a) => Array s aharpie-numhask Harpie.NumHask The identity array.
>>> pretty $ ident @[3,3] [[1,0,0], [0,1,0], [0,0,1]]
-
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. -
hruby Foreign.Ruby.Bindings No documentation available.