July 11, 2011 Re: Immutable separator to join() doesn't work | ||||
|---|---|---|---|---|
| ||||
Posted in reply to so | so wrote:
> There is a simple workaround for this type of ranges that are like
> iterators, which we know the beginning and the end.
> We can improve isForwardRange!R by adding a line hasForwardRange!R. If it
> does have, we return an adaptor which gives us a mutable range.
> Good thing is because the original range is mutable we don't need to worry
> about anything else.
Wouldn't that be quite invasive? I imagine every function that would want to work on ranges would then have to provide two versions, one that does the work and one that calls the other version after having applied the adaptor(s)?
Cheers,
-Timon
| |||
July 11, 2011 Re: Immutable separator to join() doesn't work | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Timon Gehr | On Tue, 12 Jul 2011 00:58:04 +0300, Timon Gehr <timon.gehr@gmx.ch> wrote:
> so wrote:
>> There is a simple workaround for this type of ranges that are like
>> iterators, which we know the beginning and the end.
>> We can improve isForwardRange!R by adding a line hasForwardRange!R. If it
>> does have, we return an adaptor which gives us a mutable range.
>> Good thing is because the original range is mutable we don't need to worry
>> about anything else.
>
> Wouldn't that be quite invasive? I imagine every function that would want to work
> on ranges would then have to provide two versions, one that does the work and one
> that calls the other version after having applied the adaptor(s)?
>
> Cheers,
> -Timon
In this case, not necessarily.
hasForwardRange could just be a global function that checks if its argument is an array and this i think would solve all our current problems.
| |||
July 11, 2011 Re: Immutable separator to join() doesn't work | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Timon Gehr | On Tue, 12 Jul 2011 00:58:04 +0300, Timon Gehr <timon.gehr@gmx.ch> wrote:
> Wouldn't that be quite invasive? I imagine every function that would want to work
> on ranges would then have to provide two versions, one that does the work and one
> that calls the other version after having applied the adaptor(s)?
>
> Cheers,
> -Timon
Right, we probably need to change functions but no we don't need to overload any of them.
| |||
July 12, 2011 Re: Immutable separator to join() doesn't work | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Timon Gehr | On 2011-07-11 14:45, Timon Gehr wrote: > Jonathan M Davis wrote: > > The solution is to fix template instantiation so that it's smarter when dealing with static arrays and const or immutable arrays: http://d.puremagic.com/issues/show_bug.cgi?id=6148 > > Unless I am missing something essential, supporting this would turn the > complexity of failing template function instantiations to Omega((time for > matching)*2^(number of const/immutable arrays in the input)). I don't > think this is too great. > > > It's a language issue, not a design issue. Making ranges function like slists (with head and tail or car and cdr) would be almost certainly be too inefficient (particularly for ranges where save is not super cheap, though it's at least supposed to be fairly cheap). > > That Eg. join cannot take an immutable(char[]) is certainly a design issue. I think what you find to be a language issue are limitations inherent to templates that are very hard (NP hard in the general case) to overcome. > > > Immutability might be nice, but it > > does have its costs, and in this case, D's templates aren't currenly > > smart enough to use immutable(E)[] instead of immutable(E[]). > > I claim they cannot get that smart. If I'm right, this turns it into a complete design issue. I think that they can, but regardless, I don't think that it makes sense to redesign ranges at this point. The loss of immutable and const arrays is annoying but not all that big a deal. Worst case, casting immutable(E[]) to immutable(E)[] solves the problem. > > And it's not like > > immutable ranges are going to work with non-array ranges anyway, so it's > > arguably a good idea to just expect immutable and const ranges to not > > work anyway. > > > > - Jonathan M Davis > > immutable ranges don't exist in D. immutable arrays do. The issue is that many Phobos functions can only take ranges, what excludes immutable arrays. That is bad as immutable arrays share many properties with ranges and could be used as input to similar algorithms. > > This does not have top priority (at least for me), as it is just a mild annoyance that can be worked around. But it needs some thinking. This enhancement request would make the situation with immutable and const arrays so that they're much more in line with mutable container types and static arrays: http://d.puremagic.com/issues/show_bug.cgi?id=6289 - Jonathan M Davis | |||
July 12, 2011 Re: Immutable separator to join() doesn't work | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Jonathan M Davis | "Jonathan M Davis" <jmdavisProg@gmx.com> wrote in message news:mailman.1552.1310429761.14074.digitalmars-d@puremagic.com... > This enhancement request would make the situation with immutable and const arrays so that they're much more in line with mutable container types and static arrays: > > http://d.puremagic.com/issues/show_bug.cgi?id=6289 > > - Jonathan M Davis WAIT WHAT? That doesn't work?!? | |||
July 12, 2011 Re: Immutable separator to join() doesn't work | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Daniel Murphy | On Tuesday 12 July 2011 15:46:41 Daniel Murphy wrote:
> "Jonathan M Davis" <jmdavisProg@gmx.com> wrote in message news:mailman.1552.1310429761.14074.digitalmars-d@puremagic.com...
>
> > This enhancement request would make the situation with immutable and const arrays so that they're much more in line with mutable container types and static arrays:
> >
> > http://d.puremagic.com/issues/show_bug.cgi?id=6289
> >
> > - Jonathan M Davis
>
> WAIT WHAT? That doesn't work?!?
Nope. It works for static arrays but not for const or immutable arrays. Try it. It'll fail. I don't know _why_ it doesn't work, but it doesn't. If it did, this would be a much smaller issue. It would be nice if templates were improved such that they instantiated range-based functions in a manner which worked for static arrays and const or immutable arrays, but if you could solve the problem by slicing a const or immutable array, it would make the situation far less problematic.
- Jonathan M Davis
| |||
July 12, 2011 Re: Immutable separator to join() doesn't work | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Jonathan M Davis | "Jonathan M Davis" <jmdavisProg@gmx.com> wrote in message news:mailman.1554.1310450510.14074.digitalmars-d@puremagic.com... > Nope. It works for static arrays but not for const or immutable arrays. > Try > it. It'll fail. I don't know _why_ it doesn't work, but it doesn't. If it > did, > this would be a much smaller issue. It would be nice if templates were > improved such that they instantiated range-based functions in a manner > which > worked for static arrays and const or immutable arrays, but if you could > solve > the problem by slicing a const or immutable array, it would make the > situation > far less problematic. > > - Jonathan M Davis Yeah, looking at the implementation and the test cases that rely on this, it seems to have been done to allow slicing typedefs to yeild the same type. I really doubt this is something we need to support any more. Every time this issue came up, I've always assumed this was how it worked! Honestly, template deduction with implicit conversions is very unlikely to ever happen. While it looks nice for one parameter, it quickly turns into a huge mess for multiple parameters. There is a fairly easy workaround that could be used throughout phobos: Accept T when isXXXRange!T || isXXXRange!(T[]), and use a static if to slice it when necessary. This would solve the problem for containers, static arrays, immutable arrays, and other immutable ranges. | |||
July 12, 2011 Re: Immutable separator to join() doesn't work | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Daniel Murphy | On Tuesday 12 July 2011 16:16:59 Daniel Murphy wrote:
> There is a fairly easy workaround that could be used throughout phobos: Accept T when isXXXRange!T || isXXXRange!(T[]), and use a static if to slice it when necessary. This would solve the problem for containers, static arrays, immutable arrays, and other immutable ranges.
I don't know whether that's a good idea for containers or const/immutable arrays, but it _definitely_ is a bad idea for static arrays. It would end up copying the entire array just because you forgot to slice it. Personally, I'm _far_ more inclined to say that you should just expect to have to slice something when you pass it to a range-based function. I think that the fact that the "container" that gets most used at this point is the dynamic array has gotten people used to not having to use slices much when proper containers would require them. Since arrays are really slices, it errodes the line between container and range, and I think that as proper containers are completed in std.container and enter mainstream use, it's going to throw a lot of people off, because they aren't going to function the quite same as arrays (primarily due to the fact that a container and a range are not the same thing with actual containers).
But regardless, while your suggestion might be a good idea in some cases, it's definitely not a good solution for static arrays. And I'm skeptical that it's a good idea in any case, but it would allow for immutable arrays to be used with range-based functions. It would likely be better, however, to simply make it so that slices of them can be used with range-based functions such as is the case with static arrays.
- Jonathan M Davis
| |||
July 12, 2011 Re: Immutable separator to join() doesn't work | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Jonathan M Davis | "Jonathan M Davis" <jmdavisProg@gmx.com> wrote in message news:mailman.1557.1310461819.14074.digitalmars-d@puremagic.com... > Personally, I'm > _far_ more inclined to say that you should just expect to have to slice > something when you pass it to a range-based function. That's my thinking too. > It would likely be better, however, to simply make it > so that slices of them can be used with range-based functions such as is > the > case with static arrays. I really think this was always supposed to work, but the compiler was modified to allow slicing typedefs to result in typedefs. Hopefully my patch for this will get pulled soon. | |||
Copyright © 1999-2021 by the D Language Foundation
Permalink
Reply