Copyright | Copyright (c) 1998 Chris Okasaki |
---|---|
License | MIT; see COPYRIGHT file for terms and conditions |
Maintainer | robdockins AT fastmail DOT fm |
Stability | stable |
Portability | GHC, Hugs (MPTC and FD) |
Safe Haskell | Safe |
Language | Haskell2010 |
This module provides implementations of several useful operations that are not included in the collection classes themselves. This is usually because the operation involves transforming a collection into a different type of collection; such operations cannot be typed using the collection classes without significantly complicating them.
Be aware that these functions are defined using the external class interfaces and may be less efficient than corresponding, but more restrictively typed, functions in the collection classes.
Documentation
map :: (Coll cin a, CollX cout b) => (a -> b) -> cin -> cout Source #
Apply a function across all the elements in a collection and transform the collection type.
mapPartial :: (Coll cin a, CollX cout b) => (a -> Maybe b) -> cin -> cout Source #
Map a partial function across all elements of a collection and transform the collection type.
unsafeMapMonotonic :: (OrdColl cin a, OrdCollX cout b) => (a -> b) -> cin -> cout Source #
Map a monotonic function across all the elements of a collection and transform the collection type. The function is required to satisfy the following precondition:
forall x y. x < y ==> f x < f y