[A] Add function ft_row_count

This commit is contained in:
seleznevae
2020-01-10 21:22:41 +03:00
parent c81d23e468
commit 628b509991
10 changed files with 67 additions and 8 deletions

View File

@@ -1069,6 +1069,18 @@ public:
return ft_is_empty(table_);
}
/**
* Get number of rows in the table.
*
* @return
* Number of rows in the table.
*/
std::size_t
row_count() const noexcept
{
return ft_row_count(table_);
}
/**
* Get current cell.
*