* Get the number of records for a dataset * @param int $datasetId * @param string|null $user_id * @return array */
(int $datasetId, ?string $user_id = null)
| 231 | * @return array |
| 232 | */ |
| 233 | public function getRecordCount(int $datasetId, ?string $user_id = null) { |
| 234 | return $this->StorageMapper->getRecordCount($datasetId, $user_id); |
| 235 | } |
| 236 | |
| 237 | private function floatvalue($val) { |
| 238 | // if value is a 3 digit comma number with one leading zero like 0,111, it should not go through the 1000 separator removal |