product()

The hec-python-library equivalent of Jython method product():

Not Implemented

This method is not implemented in release 1.1

The following example performs the equivalent:

ts_list: list[TimeSeries]

ts_prod = ts_list[1].copy()
for ts in ts_list[1:]:
    ts_prod *= ts