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. any :: Monad m => (a -> Bool) -> Stream (Of a) m r -> m (Of Bool r)

    streaming Streaming.Prelude

    No documentation available.

  2. any :: (Char -> Bool) -> YiString -> Bool

    yi-rope Yi.Rope

    YiString specialised any. Implementation note: this currently just does any by doing ‘TX.Text’ conversions upon consecutive chunks. We should be able to speed it up by running it in parallel over multiple chunks.

  3. any :: forall (v :: Type -> Type) a (n :: Nat) . Vector v a => (a -> Bool) -> Vector v n a -> Bool

    vector-sized Data.Vector.Generic.Sized

    O(n) Check if any element satisfies the predicate.

  4. any :: forall a (n :: Nat) . Prim a => (a -> Bool) -> Vector n a -> Bool

    vector-sized Data.Vector.Primitive.Sized

    O(n) Check if any element satisfies the predicate.

  5. any :: forall a (n :: Nat) . (a -> Bool) -> Vector n a -> Bool

    vector-sized Data.Vector.Sized

    O(n) Check if any element satisfies the predicate.

  6. any :: forall a (n :: Nat) . Storable a => (a -> Bool) -> Vector n a -> Bool

    vector-sized Data.Vector.Storable.Sized

    O(n) Check if any element satisfies the predicate.

  7. any :: forall a (n :: Nat) . Unbox a => (a -> Bool) -> Vector n a -> Bool

    vector-sized Data.Vector.Unboxed.Sized

    O(n) Check if any element satisfies the predicate.

  8. any :: PrimType ty => (ty -> Bool) -> Block ty -> Bool

    basement Basement.Block

    No documentation available.

  9. any :: (ty -> Bool) -> Array ty -> Bool

    basement Basement.BoxedArray

    No documentation available.

  10. any :: forall ty (n :: Nat) . PrimType ty => (ty -> Bool) -> BlockN n ty -> Bool

    basement Basement.Sized.Block

    No documentation available.

Page 14 of many | Previous | Next