diff options
Diffstat (limited to 'ms/ms.go')
| -rw-r--r-- | ms/ms.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -137,3 +137,7 @@ func (ma *MathematicalSeries[T]) IsNormallyDistributed() bool { func (ma *MathematicalSeries[T]) Values() []T { return ma.elements } + +func (ma *MathematicalSeries[T]) Size() int { + return len(ma.elements) +} |
