static L rectsContaining(final Pt p, L l) { ret p == null ? emptyList() : [Rect x : l | x.contains(p)]; }