On Monday, 25 December 2017 at 21:35:18 UTC, visitor wrote:
On Monday, 25 December 2017 at 21:11:08 UTC, aliak wrote:
On Monday, 25 December 2017 at 17:59:54 UTC, visitor wrote:
On Monday, 25 December 2017 at 15:03:08 UTC, aliak wrote:
On Monday, 25 December 2017 at 14:08:08 UTC, Mengu wrote:

probably better this way

int[2] tmp;
auto points = data.split(':')
                  .map!( (a) {
                      a.split(',').map!(to!int).enumerate()
                      .each!( (i, el) => tmp[i] = el );
                      return Point(tmp);
                  } );


Reply via email to