Re: [julia-users] Sharing methods across modules

2016-05-20 Thread Christoph Ortner
That does sound like a really nice option. No chance of getting this? On Friday, 20 May 2016 14:35:05 UTC+1, Tom Breloff wrote: > > Yes this is the best way (I think)... though part of me wishes there was > an empty module initialized in Base that could accept unsafe merging > without making

Re: [julia-users] Sharing methods across modules

2016-05-20 Thread Tom Breloff
Yes this is the best way (I think)... though part of me wishes there was an empty module initialized in Base that could accept unsafe merging without making your own independent module. So you could do something like: module A type TA end Base.Tmp.blib(::TA) = "I come from A" end module B

Re: [julia-users] Sharing methods across modules

2016-05-20 Thread Milan Bouchet-Valat
Le vendredi 20 mai 2016 à 05:53 -0700, Christoph Ortner a écrit : > I want to understand how to share methods across modules who don't > know of one another.  I understand that this is discussed in various > places; I tried to go through may issues, but in the end I didn't get > a good picture of

[julia-users] Sharing methods across modules

2016-05-20 Thread Christoph Ortner
I want to understand how to share methods across modules who don't know of one another. I understand that this is discussed in various places; I tried to go through may issues, but in the end I didn't get a good picture of what I should do now. Long post - my question in the end is: is