[Haskell-cafe] namespacing?

2004-12-08 Thread azrael
I've got a general new person type question. I understand that I can hide a function in a module that I am importing if it conflicts with another identical function name. But if the situation arises that I would like to use two identically named functions from two different modules is there

Re: [Haskell-cafe] namespacing?

2004-12-08 Thread Henning Thielemann
On Wed, 8 Dec 2004 [EMAIL PROTECTED] wrote: But if the situation arises that I would like to use two identically named functions from two different modules is there anyway for me to specify that I want to use the function from module A rather then the function from module B. A.func B.func

Re: [Haskell-cafe] namespacing?

2004-12-08 Thread Matthew Walton
[EMAIL PROTECTED] wrote: I've got a general new person type question. I understand that I can hide a function in a module that I am importing if it conflicts with another identical function name. But if the situation arises that I would like to use two identically named functions from two

Re: [Haskell-cafe] namespacing?

2004-12-08 Thread Duncan Coutts
On Wed, 2004-12-08 at 07:58 -0700, [EMAIL PROTECTED] wrote: I've got a general new person type question. I understand that I can hide a function in a module that I am importing if it conflicts with another identical function name. But if the situation arises that I would like to use two

RE: [Haskell-cafe] namespacing?

2004-12-08 Thread Jason Bailey
-cafe] namespacing? From: Duncan Coutts [EMAIL PROTECTED] Date: Wed, December 08, 2004 10:12 am To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] On Wed, 2004-12-08 at 07:58 -0700, [EMAIL PROTECTED] wrote: I've got a general new person type question. I understand that I can hide a function