Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## What are bitflags?

Bitflags are a way to represent a set of boolean options using a single integer. Each bit in the number corresponds to a different option, allowing for efficient storage and manipulation of multiple flags at once. Concept of creating this library originates from the article ["Everything About Bitflags"](https://neg4n.dev/explore/everything-about-bitflags).
Bitflags are a way to represent a set of boolean options using a single integer. Each bit in the number corresponds to a different option, allowing for efficient storage and manipulation of multiple flags at once. Concept of creating this library originates from the article ["Everything About Bitflags"](https://neg4n.dev/blog/everything-about-bitflags).

### Features

Expand Down Expand Up @@ -693,7 +693,7 @@ function validateMeatAddition(currentPizza: Bitflag, toppingsToAdd: Bitflag) {

## Benchmarks

See more ["Everything About Bitflags - Benchmarks"](https://neg4n.dev/explore/everything-about-bitflags#benchmarks).
See more ["Everything About Bitflags - Benchmarks"](https://neg4n.dev/blog/everything-about-bitflags#benchmarks).

## License

Expand Down