Return true if this value is [`FloatValue`]
(&self)
| 371 | |
| 372 | /// Return true if this value is [`FloatValue`] |
| 373 | pub fn is_float(&self) -> bool { |
| 374 | self.as_any().downcast_ref::<FloatValue>().is_some() |
| 375 | } |
| 376 | |
| 377 | /// Return List of [`f64`] represent the inner value of [`FloatValue`] |
| 378 | /// or None if this type it's called from wrong [`Value`] |
no test coverage detected