Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. (%=) :: MonadState s m => Setter s s a b -> (a -> b) -> m ()

    lens-family Lens.Family2.State.Lazy

    Modify a field of the state.

  2. (%!=) :: MonadState s m => Setter s s a b -> (a -> b) -> m ()

    lens-family Lens.Family2.State.Strict

    Strictly modify a field of the state.

  3. (%%=) :: MonadState s m => LensLike (Writer c) s s a b -> (a -> (c, b)) -> m c

    lens-family Lens.Family2.State.Strict

    (%%=) :: MonadState s m => Lens s s a b -> (a -> (c, b)) -> m c
    
    Modify a field of the state while returning another value.
    (%%=) :: (MonadState s m, Monoid c) => Traversal s s a b -> (a -> (c, b)) -> m c
    
    Modify each field of the state and return the mconcat of the other values.

  4. (%=) :: MonadState s m => Setter s s a b -> (a -> b) -> m ()

    lens-family Lens.Family2.State.Strict

    Modify a field of the state.

  5. (%*%) :: (C a, C b) => a -> b -> Mul a b

    numeric-prelude Algebra.DimensionTerm

    No documentation available.

  6. (%/%) :: (C a, C b) => a -> b -> Mul a (Recip b)

    numeric-prelude Algebra.DimensionTerm

    No documentation available.

  7. (%&&) :: forall (a :: Bool) (b :: Bool) . BoolRepr a -> BoolRepr b -> BoolRepr (a && b)

    parameterized-utils Data.Parameterized.BoolRepr

    Conjunction

  8. (%||) :: forall (a :: Bool) (b :: Bool) . BoolRepr a -> BoolRepr b -> BoolRepr (a || b)

    parameterized-utils Data.Parameterized.BoolRepr

    Disjunction

  9. (%>) :: Located => FilePattern -> (FilePath -> Action ()) -> Rules ()

    shake Development.Shake

    Define a rule that matches a FilePattern, see ?== for the pattern rules. Patterns with no wildcards have higher priority than those with wildcards, and no file required by the system may be matched by more than one pattern at the same priority (see priority and alternatives to modify this behaviour). This function will create the directory for the result file, if necessary.

    "*.asm.o" %> \out -> do
    let src = dropExtension out
    need [src]
    cmd "as" [src] "-o" [out]
    
    To define a build system for multiple compiled languages, we recommend using .asm.o, .cpp.o, .hs.o, to indicate which language produces an object file. I.e., the file foo.cpp produces object file foo.cpp.o. Note that matching is case-sensitive, even on Windows. If the Action completes successfully the file is considered up-to-date, even if the file has not changed.

  10. (%:) :: forall (m :: Type -> Type) w s a r . (Monad m, Monoid w) => T s a -> (a -> a) -> RWST r w s m ()

    data-accessor-transformers Data.Accessor.Monad.Trans.RWS

    Infix variant of modify.

Page 17 of many | Previous | Next