Create a [`DatumKnowledge::Any`] instance with the given nullable flag.
(nullable: bool)
| 547 | |
| 548 | /// Create a [`DatumKnowledge::Any`] instance with the given nullable flag. |
| 549 | fn any(nullable: bool) -> Self { |
| 550 | DatumKnowledge::Any { nullable } |
| 551 | } |
| 552 | |
| 553 | /// Unions (weakens) the possible states of a column. |
| 554 | fn join_assign(&mut self, other: &Self) { |
no outgoing calls