File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,8 @@ Method | Description
66
66
** ` pushAll(values: Array<bit>) ` ** | Pushes a an array of bits onto the array
67
67
** ` push(value: bit) ` ** | Pushes a single bit onto the array
68
68
** ` atIndex(index: number) ` ** | Gets the bit at a given index.
69
- ** ` atIndexRange(index: number, count: number) ` ** | Gets count bits at a given index
69
+ ** ` atIndexRange(index: number, count?: number) ` ** | Gets count bits at a given index. If count is null, the range goes to the end of the array
70
+ ** ` set(index: number, value: bit) ` ** | Sets a specified bit at an index of the array
70
71
71
72
#### Properties
72
73
Property | Description
@@ -82,3 +83,7 @@ Initial release
82
83
- ` atIndexRange(index: number, count: number) `
83
84
- ` size `
84
85
86
+ ### 1.1.0
87
+ Added method set and made count parameter optional for atIndexRange
88
+ - ` set(index: number, value: bit) `
89
+ - ` atIndexRange(index: number, count?: number) `
You can’t perform that action at this time.
0 commit comments