From: Trans Date: 2006-04-02T11:08:44+09:00 Subject: Re: Typed Parameters Daniel Nugent wrote: > Actually... now that I'm looking about it, that's kinda dumb, we might > as well just add pre, post, and around calls so we can more cleanly > seperate the Type and condition checks from the actual method. No, it's not so dumb actually. A system like the one you propose could be used for multi-dispatch --mere method wraps could not, they'd just be a more formal way of doing what we already must do using case statments. I actually wrote a system much like teh one you propose called LightType, it was based on the Euphoria language's type system. Hmm... at the time I didn't hink of using multi-dispatch with it. Since I recently wrote a working overload method maybe I'll revist the possibility. T.