Does anyone know if there's any way I can get special highlighting for lambda functions in say, Vim? It gets hard to distinguish between regular parameters and one-liner lambdas, if I could change the background color of a lambda it could really help out..
On 12/13/10, Andrej Mitrovic <[email protected]> wrote: > On 12/13/10, Steven Schveighoffer <[email protected]> wrote: >> does this work? >> > > Yes, ty. But I think there's a typo in std.algorithm.remove: > > Range remove(alias pred, SwapStrategy s = SwapStrategy.stable, > Range)(Range range); > Reduces the length of the bidirectional range range by only > keeping elements that satisfy pred. > > This should probably be "by only keeping elements that *do not* > satisfy pred.", right? > > Here's a short example where I just shorten the length of an array: > http://pastebin.com/gL6EYJzd >
