sbool concatenatableIntRanges(IntRange a, IntRange b) { if (a == null || b == null) false; ret a.end == b.start; }