You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -419,3 +342,80 @@ local my_rmean = rmean.new('my_rmean_instance', 1, 5)
419
342
420
343
- The system is automatically started when the rmean instance is created. Manual starting is only required if it was previously stopped.
421
344
- The module efficiently handles moving average calculations even with a large number of parallel running collectors and provides high-performance metrics collection capabilities.
345
+
346
+
## Ordered Dictionary (algo.odict)
347
+
348
+
The collection tracks the order in which the items are added and provides
349
+
`algo.odict.pairs()` function to get them in this order.
350
+
351
+
The ordered dictionary is a usual Lua table with a specific metatable. All the
352
+
table operations are applicable.
353
+
354
+
It is similar to Python's [collections.OrderedDict][python-odict].
0 commit comments