Merge branch 'master' into task-functions-properties
[poolifier.git] / src / circular-array.ts
index 8f545179ab2a90feb3d06fec15ee038552a25221..2347327927d96f46063bb3f17d8e9060173a722c 100644 (file)
@@ -1,10 +1,11 @@
-// Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
+// Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
 
-export const DEFAULT_CIRCULAR_ARRAY_SIZE = 1024
+export const DEFAULT_CIRCULAR_ARRAY_SIZE = 385
 
 /**
  * Array with a maximum length and shifting items when full.
  *
+ * @typeParam T - Type of items.
  * @internal
  */
 export class CircularArray<T> extends Array<T> {