static TsQuery and(Iterable<TsQuery> items) { final q = _AndTsQuery._(); for (final item in items) { q._add(item); } return q; }