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