https://github.com/space-code/atomic
atomic is a Swift property wrapper designed to make values thread-safe.
https://github.com/space-code/atomic
atomic-operation swift
Last synced: 3 months ago
JSON representation
atomic is a Swift property wrapper designed to make values thread-safe.
- Host: GitHub
- URL: https://github.com/space-code/atomic
- Owner: space-code
- License: mit
- Created: 2023-05-27T06:32:07.000Z (almost 2 years ago)
- Default Branch: dev
- Last Pushed: 2024-01-23T19:26:50.000Z (over 1 year ago)
- Last Synced: 2024-04-25T06:01:28.249Z (about 1 year ago)
- Topics: atomic-operation, swift
- Language: Swift
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
atomic
## Description
`atomic` is a Swift property wrapper designed to make values thread-safe.- [Usage](#usage)
- [Requirements](#requirements)
- [Installation](#installation)
- [Communication](#communication)
- [Contributing](#contributing)
- [Author](#author)
- [License](#license)## Usage
```swift
import Atomic/// Creates an `Atomic` property.
@Atomic var value = 5
```## Installation
### Swift Package ManagerThe [Swift Package Manager](https://swift.org/package-manager/) is a tool for automating the distribution of Swift code and is integrated into the `swift` compiler. It is in early development, but `atomic` does support its use on supported platforms.
Once you have your Swift package set up, adding `atomic` as a dependency is as easy as adding it to the `dependencies` value of your `Package.swift`.
```swift
dependencies: [
.package(url: "https://github.com/space-code/atomic.git", .upToNextMajor(from: "1.1.0"))
]
```## Communication
- If you **found a bug**, open an issue.
- If you **have a feature request**, open an issue.
- If you **want to contribute**, submit a pull request.## Contributing
Bootstrapping development environment```
make bootstrap
```Please feel free to help out with this project! If you see something that could be made better or want a new feature, open up an issue or send a Pull Request!
## Author
Nikita Vasilev, [email protected]## License
atomic is available under the MIT license. See the LICENSE file for more info.