UpNext

14.2.1  Bool

The standard library Bool api defines access to Boolean values and functions.

The Bool api is implemented by the bool package.

The Bool api source code is in src/lib/std/src/bool.api. The above information is manually maintained and may contain errors.

api {
    Bool  = FALSE | TRUE;
    not : Bool -> Bool;
    to_string : Bool -> String;
    from_string : String -> Null_Or(Bool );
    scan : number_string::Reader((Char, X)) -> number_string::Reader((Bool, X));};


Comments and suggestions to: bugs@mythryl.org

UpNext