Update README.md

This commit is contained in:
Eugene Antonenkov 2024-07-05 00:15:20 +03:00 committed by GitHub
parent e73e47a702
commit 8e609c984c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -78,3 +78,11 @@ const clonedBitmap = bitmap.clone();
- **Iteration and Filtering:** `range(fn: (x: number) => boolean)`, `filter(fn: (x: number) => boolean)` - **Iteration and Filtering:** `range(fn: (x: number) => boolean)`, `filter(fn: (x: number) => boolean)`
- **Count and Extremes:** `count()`, `min()`, `max()`, `minZero()`, `maxZero()` - **Count and Extremes:** `count()`, `min()`, `max()`, `minZero()`, `maxZero()`
- **Cloning:** `clone(): Bitmap` - **Cloning:** `clone(): Bitmap`
#### Note
This library is designed for bitmap indexing operations and is not related to image processing. For more information on bitmap indexing, please refer to [Bitmap Index Wiki](https://en.wikipedia.org/wiki/Bitmap_index).
---
Feel free to contribute, report issues, or suggest improvements on [GitHub](https://github.com/yazmeyaa/bitmap-index).