
8 Dec
2004
8 Dec
'04
3:15 p.m.
azrael@demonlords.net 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 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.
import qualified A as A import qualified B as B A.fun B.fun Or indeed import qualified A as Flobble import B Flooble.fun -- fun from A fun -- fun from B