Skip to content

Commit

Permalink
adapt signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
radeusgd committed Feb 13, 2025
1 parent 030b274 commit 95eb342
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion distribution/lib/Standard/Table/0.0.0-dev/src/Column.enso
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,7 @@ type Column
import Standard.Examples

example_contains = Examples.text_column_1.is_in [1, 2, 5]
is_in self (vector : Vector | Column) -> Column =
is_in self (vector : Vector | Column | Array) -> Column =
result_name = naming_helper.concat [naming_helper.to_expression_text self, "in", naming_helper.to_expression_text vector]
as_vector = case vector of
_ : Vector -> vector
Expand Down
2 changes: 1 addition & 1 deletion distribution/lib/Standard/Table/0.0.0-dev/src/Table.enso
Original file line number Diff line number Diff line change
Expand Up @@ -2727,7 +2727,7 @@ type Table

`table.join other on=[..Equals "A" "A", ..Equals "B" "B"]`
@on Widget_Helpers.make_join_condition_selector
join self right:Table=(Missing_Argument.throw "right") join_kind:Join_Kind=..Left_Outer (on : Vector (Join_Condition | Text) | Text = [Join_Condition.Equals self.column_names.first]) right_prefix:Text="Right " on_problems:Problem_Behavior=..Report_Warning -> Table = Out_Of_Memory.handle_java_exception "join" <|
join self right:Table=(Missing_Argument.throw "right") join_kind:Join_Kind=..Left_Outer (on : Vector (Join_Condition | Text) | Text | Join_Condition = [Join_Condition.Equals self.column_names.first]) right_prefix:Text="Right " on_problems:Problem_Behavior=..Report_Warning -> Table = Out_Of_Memory.handle_java_exception "join" <|
columns_to_keep = case join_kind of
Join_Kind.Left_Exclusive -> [True, False]
Join_Kind.Right_Exclusive -> [False, True]
Expand Down

0 comments on commit 95eb342

Please sign in to comment.