Skip to content

kseo/bit_vector

Repository files navigation

bit_vector

Pub Package Build Status

A pure Dart memory-efficient packed representation for bit arrays.

Examples

import 'package:bit_vector/bit_vector.dart';

main() {
  BitVector v = new BitVector();
  v.set(68);
  print(v[68]); // true
  v.toggle(68);
  print(v[68]); // false
}

About

A pure Dart memory-efficient packed representation for bit arrays

Resources

License

Stars

Watchers

Forks

Packages

No packages published