On Sat, Jun 23, 2007 at 04:53:51PM -0700, Michael Vanier wrote: > I noticed that both the Data.Array library and the Data.Map library use the > (!) operator for different purposes. How would it be possible to import > both libraries usefully in a single module? I guess what I'm really asking > is: how do I qualify operator names?
import qualified Data.Map as M import qualified Data.Array as A foo = bar M.! baz Stefan _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
