Re: [julia-users] Keyword arguments and type specialization

2014-06-29 Thread Chris Foster
On Sun, Jun 29, 2014 at 1:06 AM, Milan Bouchet-Valat nalimi...@club.fr wrote: One solution I thought of is to create a workhorse function do_freqtable(weights, subset, x...), which would be specialized on types. It sounds like a bit like working around a limitation of keyword arguments, but it

[julia-users] Keyword arguments and type specialization

2014-06-28 Thread Milan Bouchet-Valat
Hi! I'm looking for advice about the best way to make use of keyword arguments, taking into account the fact that type specialization and type dispatch does not happen for them. The use case is writing a contingency table function, but I think this is a rather standard situation. The method