Added Python port.

This commit is contained in:
Teal Dulcet
2022-02-01 07:20:23 -08:00
parent e3c5ab871c
commit 36f2f057d8
7 changed files with 1195 additions and 61 deletions

View File

@@ -330,11 +330,8 @@ int table(const size_t rows, const size_t columns, char ***array, const tableopt
// Convert array to char array and output as table
template <typename T>
int table(size_t rows, size_t columns, T **array, const char *const headerrow[], const char *const headercolumn[], const tableoptions &aoptions)
int table(size_t rows, size_t columns, const T &array, const char *const headerrow[], const char *const headercolumn[], const tableoptions &aoptions)
{
if (array == NULL)
return 1;
unsigned int i = 0;
unsigned int j = 0;