# flyweight
**Repository Path**: axylp/flyweight
## Basic Information
- **Project Name**: flyweight
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-03-06
- **Last Updated**: 2025-08-15
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Boost.Flyweight
[](https://github.com/boostorg/flyweight/tree/master) [](https://github.com/boostorg/flyweight/actions/workflows/ci.yml) [](https://drone.cpp.al/boostorg/flyweight) [](https://pdimov.github.io/boostdep-report/master/flyweight.html) [](https://www.boost.org/doc/libs/master/libs/flyweight) [](http://www.boost.org/development/tests/master/developer/flyweight.html)
[](https://github.com/boostorg/flyweight/tree/develop) [](https://github.com/boostorg/flyweight/actions/workflows/ci.yml) [](https://drone.cpp.al/boostorg/flyweight) [](https://pdimov.github.io/boostdep-report/develop/flyweight.html) [](https://www.boost.org/doc/libs/develop/libs/flyweight) [](http://www.boost.org/development/tests/develop/developer/flyweight.html)
[](https://www.boost.org/users/license.html)
Flyweights are small-sized handle classes granting constant access to shared common data, thus allowing for the management
of large amounts of entities within reasonable memory limits. Boost.Flyweight makes it easy to use this common programming
idiom by providing the class template `flyweight`, which acts as a drop-in replacement for `const T`.
## Learn about Boost.Flyweight
* [Online documentation](https://boost.org/libs/flyweight)
## Install Boost.Flyweight
* [Download Boost](https://www.boost.org/users/download/) and you're ready to go (this is a header-only library requiring no building).
* Using Conan 2: In case you don't have it yet, add an entry for Boost in your `conanfile.txt` (the example requires at least Boost 1.86):
```
[requires]
boost/[>=1.86.0]
```
If you're not using any compiled Boost library, the following will skip building altogether:
```
[options]
boost:header_only=True
```
* Using vcpkg: Execute the command
```
vcpkg install boost-flyweight
```
* Using CMake: [Boost CMake support infrastructure](https://github.com/boostorg/cmake)
allows you to use CMake directly to download, build and consume all of Boost or
some specific libraries.
## Support
* Join the **#boost** discussion group at [cpplang.slack.com](https://cpplang.slack.com/)
([ask for an invite](https://cppalliance.org/slack/) if you’re not a member of this workspace yet)
* Ask in the [Boost Users mailing list](https://lists.boost.org/mailman/listinfo.cgi/boost-users)
(add the `[flyweight]` tag at the beginning of the subject line)
* [File an issue](https://github.com/boostorg/flyweight/issues)
## Contribute
* [Pull requests](https://github.com/boostorg/flyweight/pulls) against **develop** branch are most welcome.
Note that by submitting patches you agree to license your modifications under the [Boost Software License, Version 1.0](http://www.boost.org/LICENSE_1_0.txt).