X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcircular-array.ts;h=cc58d8ace71f01f721d1798924b83d359ddc1dec;hb=153179f2d97a4fc3b9afb31ad8875d416414e484;hp=8f545179ab2a90feb3d06fec15ee038552a25221;hpb=ddc35f92c712f38d9cfd79fd558cf80c0e031219;p=poolifier.git diff --git a/src/circular-array.ts b/src/circular-array.ts index 8f545179..cc58d8ac 100644 --- a/src/circular-array.ts +++ b/src/circular-array.ts @@ -5,6 +5,7 @@ export const DEFAULT_CIRCULAR_ARRAY_SIZE = 1024 /** * Array with a maximum length and shifting items when full. * + * @typeParam T - Type of items. * @internal */ export class CircularArray extends Array {