Return true if this value is [`BoolValue`]
(&self)
| 390 | |
| 391 | /// Return true if this value is [`BoolValue`] |
| 392 | pub fn is_bool(&self) -> bool { |
| 393 | self.as_any().downcast_ref::<BoolValue>().is_some() |
| 394 | } |
| 395 | |
| 396 | /// Return List of [`bool`] represent the inner value of [`BoolValue`] |
| 397 | /// or None if this type it's called from wrong [`Value`] |
no test coverage detected