====== Add Table Row ====== ===== Description ===== Inserts a row into the specified table. ===== Inputs ===== ^ Name ^ Type ^ Description ^ | Table | [[Table Type]] | Table where the new row will be created. | | Values | [[Tuple Type]] | All values to be added as the new row. | ===== Optional Inputs ===== None. ===== Outputs ===== ^ Name ^ Type ^ Description ^ | Result | [[Table Type]] | The resulting table containing the new row. | ===== Group ===== [[Functor List#Table | Table]] ===== Notes ===== The tuple corresponding to the new row must have elements corresponding to all of the table's columns, otherwise this functor reports an error. If a row with the same keys as the given tuple already exists in the input table, the existing row is updated with the new values. ===== Internal Name ===== AddTableRow