Skip to content

Commit

Permalink
Added BitWiser
Browse files Browse the repository at this point in the history
  • Loading branch information
DrAma999 committed Feb 9, 2022
1 parent bbe766c commit fa45659
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Feel free to contribute if you make or find something awesome.

* [Guides](#guides)
* Projects
* [BitWiser](#bitwiser)
* [Dependency Injection](#dependency-injection)
* [GraphQL](#graphql)
* [HTML](#html)
Expand All @@ -31,6 +32,30 @@ A list of helpful guides/tutorials on result builders
* [The Swift 5.1 features that power SwiftUI’s API](https://www.swiftbysundell.com/posts/the-swift-51-features-that-power-swiftuis-api#function-builders)
* [Create Your First Function Builder in 10 Minutes](https://link.medium.com/8jxUOvuXLY)

## BitWiser
* [BitWiser](https://github.com/DrAma999/BitWiser) - A simple library to help you in dealing with bytes, bits, nibbles and Data

```swift
Data {
[UInt8(0)]
UInt8(1)
Int8(2)
"\u{03}"
Int16(1284)
if dataClause {
CustomData()
}
}

Array<Byte> {
0b1010_1010
0b1100_1100
UInt8(32)
[0x05, 0x06]
Byte(0x01)
}
```

## Dependency Injection
* [DependencyInjection](https://github.com/sebastianpixel/DependencyInjection) - Dependency injection with function builders and property wrappers

Expand Down

0 comments on commit fa45659

Please sign in to comment.