bool-toggle 1.1.1

bool toggling for the bool toggle enjoyers
Documentation
  • Coverage
  • 66.67%
    2 out of 3 items documented1 out of 3 items with examples
  • Size
  • Source code size: 10.98 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.12 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Noratrieb/bool-toggle
    12 2 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Noratrieb

i love toggling bools it's one of my favourite things to do

Provides fn toggle(&mut self) on bool for toggling bools.

use bool_toggle::TogglingIsALifestyle;
let mut omg_i_want_to_be_toggled_soooo_badly = false;
assert_eq!(omg_i_want_to_be_toggled_soooo_badly, false);
omg_i_want_to_be_toggled_soooo_badly.toggle();
assert_eq!(omg_i_want_to_be_toggled_soooo_badly, true);
omg_i_want_to_be_toggled_soooo_badly.toggle();
assert_eq!(omg_i_want_to_be_toggled_soooo_badly, false);
let i_dont_want_to_be_toggled = false;
// That's okay.

Enterprise license

This crate supports a professional re-export of the trait, BoolToggleExt. It is only available when compiling with --cfg enterprise_license and obtaining an enterprise license. For license inquiries, send mail to /dev/null.

MSRV

The minimum supported Rust version of this crate is 1.1000.0. Lower versions might compile but are not supported.

Architecture

This Crate features the world's most resilient bit flipping algorithm. Its code adheres to the highest clean code standards and aims to provide a maintainable and future proof solution to all the boolean toggling needs there are.