#language #weak-typed

no-std weak_true

Similar to the automatic implicit conversion to boolean values in weakly typed languages

8 releases

new 0.1.7 Apr 10, 2025
0.1.6 Apr 10, 2025
0.1.5 Jun 2, 2024
0.1.4 May 27, 2024

#94 in No standard library

Download history 2/week @ 2025-02-14 99/week @ 2025-04-04

103 downloads per month

MIT license

18KB
446 lines

Similar to the automatic implicit conversion to boolean values in weakly typed languages

type impl
float self is not 0.0 / NaN
integer self != 0
reference / smart pointer inner value impl
raw pointer !self.is_null
Option self.is_some
Result self.is_ok
Poll self.is_ready
str / slice / array !self.is_empty
collections !self.is_empty
unit false
bool self
fn / tuple / char true

Examples

use weak_true::WeakTrue;

assert!("c".weak_true());
assert!('c'.weak_true());
assert!('\0'.weak_true());
assert!([0].weak_true());
assert!((&0 as *const i32).weak_true());
assert!(Some(0).weak_true());

assert!(f64::NAN.weak_false());
assert!(0.0.weak_false());
assert!(0.weak_false());
assert!("".weak_false());
assert!([0; 0].weak_false());

assert_eq!(1.weak_then(|| "ok"), Some("ok"));
assert_eq!(0.weak_then(|| "ok"), None);

No runtime deps

Features