libraries.json 674 B

12345678910111213141516
  1. {
  2. "key": "dynamic_bitset",
  3. "name": "Dynamic Bitset",
  4. "authors": [
  5. "Jeremy Siek",
  6. "Chuck Allison"
  7. ],
  8. "description": "The dynamic_bitset class represents a set of bits. It provides accesses to the value of individual bits via an operator[] and provides all of the bitwise operators that one can apply to builtin integers, such as operator& and operator<<. The number of bits in the set is specified at runtime via a parameter to the constructor of the dynamic_bitset.",
  9. "documentation": "dynamic_bitset.html",
  10. "category": [
  11. "Containers"
  12. ],
  13. "maintainers": [
  14. "Jeremy Siek <jeremy.siek -at- gmail.com>"
  15. ]
  16. }