using System.Threading.Tasks;
if (a1.b || (a2 != null && a2.b))
public static implicit operator B(bool b)
return b ? new B { x = 1 } : new B { x = 0 };
public static explicit operator bool(B b)
public static bool operator true(B d1)
public static bool operator false(B d1)
public static B operator &(B d1, B d2)
return d1.x > 0 && d2.x > 0;
public static B operator |(B d1, B d2)
return d1.x > 0 || d2.x > 0;