oh my; one more typo (I really wish these forums had edit functionality) struct definition: ---- struct IntPair { private int[] _pair; int left() { return _pair[0]; } int right() { return _pair[1]; } alias _pair this; } ----