report method
void
report()
give report of camp statistics
Implementation
void report() {
_flowC(' --<----<- :camp:$name campReport --<----<-', _pB);
_flowC(' :camp:report :info: Report for to check data lists. >>', _pB);
_flowC(' >> :camp:report: ** Not needed when: scheduleBox.**.', _pB);
List<String> _l = [];
List<String> _l2 = [];
_l.addAll(tl.bufToList(out.outTMid));
for (var x = 0; x < _l.length; x++) {
///
if (_l[x].indexOf(':camp:') > 0) {
_l2.add(_l[x]);
}
}
}