[Challenge] implementing the ambiguous operator in D
Philippe Sigaud
philippe.sigaud at gmail.com
Thu Sep 2 12:32:31 PDT 2010
On Thu, Sep 2, 2010 at 09:06, Peter Alexander
<peter.alexander.au at gmail.com>wrote:
> On 2/09/10 7:34 AM, Pelle wrote:
>
>> It needs opEquals :-)
>>
>
> Yeah, it needs a lot of things :)
>
> You could easily add unary operators as well (e.g. so that -amb([1, 2]) ==
> [-1, -2]. I didn't bother adding more than I did because it would make the
> post too large, and wouldn't really add anything (I thought that the binary
> ops + dispatch covered most of the interesting cases).
>
> Also, I think it would supposed to return amb(map!...) instead of just
> returning map!... (otherwise you couldn't chain them), but that's a simple
> fix.
>
Yes, like Haskell monads: get into, transform, return a wrapped result.
Does your code compile for you? I tried it when you posted it on SO and the
.length, .replace("a","u") didn't work.
I had to change opDispatch from
auto opDispatch(string f)()
{
mixin("return map!((E e) { return e."~f~"; })(r);");
}
to:
auto opDispatch(string f)()
{
return map!(unaryFun!("a."~f))(r);
}
I tried to do the same for the dispatch with arguments, but got very strange
errors. DMD told me it couldn't get the args at CT.
Oh, but you changed your code on SO. It can know do the first example too.
That's good, and was in fact my main subject of interest. Amb seems to be
like the product of two ranges (with an operator), which is then flattened.
What I don't get is the link with the ruby article and its use of if.
Philippe
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.puremagic.com/pipermail/digitalmars-d/attachments/20100902/da0e3415/attachment.html>
More information about the Digitalmars-d
mailing list