Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. evaluateM :: (Index ix, Source r e, MonadThrow m) => Array r ix e -> ix -> m e

    massiv Data.Massiv.Array

    This is just like indexM function, but it allows getting values from delayed arrays as well as Manifest. As the name suggests, indexing into a delayed array at the same index multiple times will cause evaluation of the value each time and can destroy the performace if used without care.

    Examples

    >>> import Control.Exception
    
    >>> import Data.Massiv.Array
    
    >>> evaluateM (range Seq (Ix2 10 20) (100 :. 210)) 50 :: Either SomeException Ix2
    Right (60 :. 70)
    
    >>> evaluateM (range Seq (Ix2 10 20) (100 :. 210)) 150 :: Either SomeException Ix2
    Left (IndexOutOfBoundsException: (150 :. 150) is not safe for (Sz (90 :. 190)))
    

  2. evaluateScript :: JSString -> JSM JSVal

    jsaddle Language.Javascript.JSaddle.Native.Internal

    No documentation available.

  3. evaluateArgVector :: (C a v, C v) => T a -> v -> v

    numeric-prelude MathObj.Polynomial

    Here the argument is a vector, for example the coefficients are complex numbers or square matrices and the coefficents are reals.

  4. evaluateCoeffVector :: C a v => T v -> a -> v

    numeric-prelude MathObj.Polynomial

    Here the coefficients are vectors, for example the coefficients are real and the coefficents are real vectors.

  5. evaluateArgVector :: (C a v, C v) => T a -> v -> v

    numeric-prelude MathObj.PowerSeries

    No documentation available.

  6. evaluateCoeffVector :: C a v => T v -> a -> v

    numeric-prelude MathObj.PowerSeries

    Evaluate (truncated) power series.

  7. evaluateArgVector :: (C a v, C v) => [a] -> v -> v

    numeric-prelude MathObj.PowerSeries.Core

    No documentation available.

  8. evaluateCoeffVector :: C a v => [v] -> a -> v

    numeric-prelude MathObj.PowerSeries.Core

    No documentation available.

  9. evaluateSettings :: (HasEvaluateSettings s, Functor f) => LensLike' f s EvaluateSettings

    dhall Dhall

    No documentation available.

  10. evaluateDeep :: forall a (es :: [Effect]) . NFData a => a -> Eff es a

    effectful-core Effectful.Exception

    Deeply evaluate a value using evaluate and NFData.

Page 7 of many | Previous | Next