bit_vector 0.4.0 copy "bit_vector: ^0.4.0" to clipboard
bit_vector: ^0.4.0 copied to clipboard

outdatedDart 1 only

A pure Dart memory-efficient packed representation for bit arrays

bit_vector #

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.get(68)); // true
  v.toggle(68);
  print(v.get(68)); // false
}
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A pure Dart memory-efficient packed representation for bit arrays

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

fixnum

More

Packages that depend on bit_vector