Re: D Meetup in Berlin

2014-12-04 Thread Hatem Oraby via Digitalmars-d

On Thursday, 4 December 2014 at 13:10:20 UTC, Stefan wrote:

On Thursday, 4 December 2014 at 12:57:59 UTC, Ben wrote:

Hi All,

I am a Berlin based D developer who has been working with D 
for about 2 and a half years. Like other more well known names 
in these forums I work for a company called Sociomantic.


I am interested in organizing some meetups for D programmers 
in the nearby area. The first of these will be very informal 
and involve a social meeting at a cafe or bar to chat and 
gauge any interest in future events and in what direction 
people think these should head. I was thinking of arranging 
this for mid January next year but am very flexible on the 
dates.


Let me know if you are interested in taking part in this or 
any future Berlin based events.


Thanks,
Ben.


Hi, another Sociomantic developer checking in. This sounds like 
a great idea, I will definitely be there.


One more sociomantic developer here is joining as well. Glad that 
we finally got that going.


Re: DIP10005: Dependency-Carrying Declarations is now available for community feedback

2016-12-13 Thread Hatem Oraby via Digitalmars-d
On Wednesday, 14 December 2016 at 01:39:01 UTC, Andrei 
Alexandrescu wrote:

On 12/13/16 8:07 PM, Chris M. wrote:

[...]


So we have:

// 1
struct Buffer(R) if ((import std.range).isInputRange!R) { ... }

[...]


What about?:

with(import std.range)
bool equal(R1, R2) if (isInputRange!R1 && isInputRange!R2)
{ ... }