Returns [`Self::value`] formatted as a string
(&self, row: usize)
| 1647 | |
| 1648 | /// Returns [`Self::value`] formatted as a string |
| 1649 | pub fn value_as_string(&self, row: usize) -> String { |
| 1650 | T::format_decimal(self.value(row), self.precision(), self.scale()) |
| 1651 | } |
| 1652 | |
| 1653 | /// Returns the decimal precision of this array |
| 1654 | pub fn precision(&self) -> u8 { |