GithubHelp home page GithubHelp logo

determinate-bool's Introduction

Determinate - bool with superpowers

Overview

This is a Rust library to provide a type, Determinate<T>, which is like bool, but with additional features. It provides a simple enum, Determinate, with variants for True, False, and Indeterminate, allowing you to express conditions with or without associated data.

Features

  • Simple Representation: Easily express true, false, or indeterminate conditions in your Rust code.
  • Flexible Usage: Use associated data with the True variant or represent false or indeterminate conditions without the need for additional information.
  • Display Formatting: The std::fmt::Display trait has been implemented for convenient printing and debugging.

Installation

To make things easy, navigate to your project and run:

cargo add determinate-bool

This will automagically add the Determinate library to your project.

Example

use determinate_bool::Determinate;

fn main() {
    let result_default = Determinate::new();
    println!("Default: {}", result_default);

    let result_true = Determinate::from(true);
    println!("True: {}", result_true);

    let result_false = Determinate::from(false);
    println!("False: {}", result_false);
    
    let explicit_determinate = Determinate::True("This is specific!");
    println!("Explicit determinate: {}", explicit_determinate);

    let explicit_indeterminate = Determinate::<()>::Indeterminate;
    println!("Explicit indeterminate: {}", explicit_indeterminate);

    println!("{}", explicit_determinate.unwrap());
}

API Reference

  • Determinate::new() - Create a new Determinate::Indeterminate.
  • Determinate::from(from_bool) - Create a Determinate instance from a bool. If from_bool is true, the associated value is set to 0.

License

GNU GPL v3.0 or later.

determinate-bool's People

Contributors

aeriavelocity avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.