mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 08:08:34 +03:00
77fe69dfd9
- Aligned `compare_to` so returns `Type_Error` if `that` is wrong type for `Text`, `Ordering` and `Duration`. - Add `empty_object`, `empty_array`. `get_or_else`, `at`, `field_names` and `length` to `Json`. - Fix `Json` serialisation of NaN and Infinity (to "null"). - Added `length`, `at` and `to_vector` to Pair (allowing it to be treated as a Vector). - Added `running_fold` to the `Vector` and `Range`. - Added `first` and `last` to the `Vector.Builder`. - Allow `order_by` to take a single `Sort_Column` or have a mix of `Text` and `Sort_Column.Name` in a `Vector`. - Allow `select_columns_helper` to take a `Text` value. Allows for a single field in group_by in cross_tab. - Added `Patch` and `Custom` to HTTP_Method. - Added running `Statistic` calculation and moved more of the logic from Java to Enso. Performance seems similar to pure Java version now.
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
name: Table
|
|
namespace: Standard
|
|
version: 0.0.0-dev
|
|
license: APLv2
|
|
authors:
|
|
- name: Enso Team
|
|
email: contact@enso.org
|
|
maintainers:
|
|
- name: Enso Team
|
|
email: contact@enso.org
|
|
component-groups:
|
|
extends:
|
|
- Standard.Base.Input:
|
|
exports:
|
|
- Standard.Table.Data.Table.Table.new
|
|
- Standard.Table.Data.Table.Table.from_rows
|
|
- Standard.Table.Data.Column.Column.from_vector
|
|
- Standard.Base.Select:
|
|
exports:
|
|
- Standard.Table.Data.Table.Table.at
|
|
- Standard.Table.Data.Table.Table.select_columns
|
|
- Standard.Table.Data.Table.Table.remove_columns
|
|
- Standard.Table.Data.Table.Table.reorder_columns
|
|
- Standard.Table.Data.Table.Table.sort_columns
|
|
- Standard.Base.Join:
|
|
exports:
|
|
- Standard.Table.Data.Table.Table.join
|
|
- Standard.Table.Data.Table.Table.aggregate
|
|
- Standard.Base.Transform:
|
|
exports:
|
|
- Standard.Table.Data.Table.Table.rename_columns
|
|
- Standard.Table.Data.Table.Table.filter
|
|
- Standard.Table.Data.Table.Table.order_by
|
|
- Standard.Table.Data.Table.Table.transpose
|
|
- Standard.Table.Data.Table.Table.cross_tab
|
|
- Standard.Table.Data.Column.Column.to_table
|
|
- Standard.Base.Output:
|
|
exports:
|
|
- Standard.Table.Data.Table.Table.write
|