refactor: Simplify TSeries and Dema constructors, and streamline benchmark methods for improved readability

This commit is contained in:
Miha Kralj
2025-12-08 18:43:23 -05:00
parent 53a2dd2c05
commit 5f57cbbe74
9 changed files with 20 additions and 67 deletions
+1 -3
View File
@@ -20,10 +20,8 @@ namespace QuanTAlib;
public event Action<TValue>? Pub;
public TSeries()
public TSeries() : this(0)
{
_t = new List<long>();
_v = new List<double>();
}
public TSeries(int capacity)