Return true if the value is definitely false (and not null).
(&self)
| 1890 | |
| 1891 | /// Return true if the value is definitely false (and not null). |
| 1892 | pub fn is_certainly_false(&self) -> bool { |
| 1893 | self == &Self::FALSE |
| 1894 | } |
| 1895 | |
| 1896 | /// Returns the set of possible values after applying the `is false` test on all |
| 1897 | /// values in this set. |
no outgoing calls