Top | ![]() |
![]() |
![]() |
![]() |
GArrowTable * | garrow_table_new () |
gboolean | garrow_table_equal () |
GArrowSchema * | garrow_table_get_schema () |
GArrowColumn * | garrow_table_get_column () |
guint | garrow_table_get_n_columns () |
guint64 | garrow_table_get_n_rows () |
GArrowTable * | garrow_table_add_column () |
GArrowTable * | garrow_table_remove_column () |
GArrowTable * | garrow_table_replace_column () |
GArrowTable is a class for table. Table has zero or more GArrowColumns and zero or more records.
GArrowTable * garrow_table_new (GArrowSchema *schema
,GList *columns
);
gboolean garrow_table_equal (GArrowTable *table
,GArrowTable *other_table
);
Since: 0.4.0
GArrowTable * garrow_table_add_column (GArrowTable *table
,guint i
,GArrowColumn *column
,GError **error
);
The newly allocated
GArrowTable that has a new column or NULL
on error.
[nullable][transfer full]
Since: 0.3.0
GArrowTable * garrow_table_remove_column (GArrowTable *table
,guint i
,GError **error
);
The newly allocated
GArrowTable that doesn't have the column or NULL
on error.
[nullable][transfer full]
Since: 0.3.0
GArrowTable * garrow_table_replace_column (GArrowTable *table
,guint i
,GArrowColumn *column
,GError **error
);
table |
A GArrowTable. |
|
i |
The index of the column to be replaced. |
|
column |
The newly added GArrowColumn. |
|
error |
[nullable] |
The newly allocated
GArrowTable that has column
as the i
-th column or NULL
on
error.
[nullable][transfer full]
Since: 0.10.0