Return true if this value is [`IntValue`]
(&self)
| 357 | |
| 358 | /// Return true if this value is [`IntValue`] |
| 359 | pub fn is_int(&self) -> bool { |
| 360 | self.as_any().downcast_ref::<IntValue>().is_some() |
| 361 | } |
| 362 | |
| 363 | /// Return List of [`i64`] represent the inner value of [`IntValue`] |
| 364 | /// or None if this type it's called from wrong [`Value`] |
no test coverage detected