static double parseHourMinSecOrMinSecAsSeconds(S s) { LS l = splitAtColon(s); ret hourMinSecToSec( parseInt(nextToNextToLast(l)), parseInt(nextToLast(l)), parseInt(last(l))); }