static L indexesInSpeechLog(S s) { new L l; int i = 0; for (S line : fullSpeechLog()) { if (match(s, line)) l.add(i); ++i; } ret l; }