type stringclasses 5
values | name stringlengths 1 55 | qualified_name stringlengths 5 147 | docstring stringlengths 15 4.52k ⌀ | filepath stringclasses 206
values | is_public bool 2
classes | is_private bool 2
classes | line_start int64 0 1.99k ⌀ | line_end int64 0 2.01k ⌀ | annotation stringclasses 14
values | returns stringclasses 308
values | value stringclasses 152
values | parameters listlengths 0 117 ⌀ | bases listlengths 0 3 ⌀ | parent_class stringclasses 376
values | api_element_summary stringlengths 199 33.8k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
method | children | fenic.core._logical_plan.expressions.text.StartsWithExpr.children | null | null | true | false | 580 | 581 | null | List[LogicalExpr] | null | [
"self"
] | null | StartsWithExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.StartsWithExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: StartsWithExpr |
class | EndsWithExpr | fenic.core._logical_plan.expressions.text.EndsWithExpr | Expression for checking if a string column ends with a substring.
This expression creates a boolean result indicating whether each value in the input
string column ends with the specified substring.
Args:
expr: The input string column expression
substr: The substring to check for at the end of each value (col... | null | true | false | 584 | 611 | null | null | null | null | [
"ValidatedSignature",
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: EndsWithExpr
Qualified Name: fenic.core._logical_plan.expressions.text.EndsWithExpr
Docstring: Expression for checking if a string column ends with a substring.
This expression creates a boolean result indicating whether each value in the input
string column ends with the specified substring.
... |
method | __init__ | fenic.core._logical_plan.expressions.text.EndsWithExpr.__init__ | null | null | true | false | 601 | 604 | null | null | null | [
"self",
"expr",
"substr"
] | null | EndsWithExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.EndsWithExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "substr"]
Returns: none
Parent Class: EndsWithExpr |
method | children | fenic.core._logical_plan.expressions.text.EndsWithExpr.children | null | null | true | false | 610 | 611 | null | List[LogicalExpr] | null | [
"self"
] | null | EndsWithExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.EndsWithExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: EndsWithExpr |
class | RegexpSplitExpr | fenic.core._logical_plan.expressions.text.RegexpSplitExpr | Expression for splitting a string column using a regular expression pattern.
This expression creates an array of substrings by splitting the input string column
at matches of the specified regular expression pattern. The implementation uses
str.replace to convert regex matches to a unique delimiter, then splits on tha... | null | true | false | 614 | 650 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: RegexpSplitExpr
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpSplitExpr
Docstring: Expression for splitting a string column using a regular expression pattern.
This expression creates an array of substrings by splitting the input string column
at matches of the specified regu... |
method | __init__ | fenic.core._logical_plan.expressions.text.RegexpSplitExpr.__init__ | null | null | true | false | 633 | 637 | null | null | null | [
"self",
"expr",
"pattern",
"limit"
] | null | RegexpSplitExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpSplitExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "pattern", "limit"]
Returns: none
Parent Class: RegexpSplitExpr |
method | children | fenic.core._logical_plan.expressions.text.RegexpSplitExpr.children | null | null | true | false | 643 | 644 | null | List[LogicalExpr] | null | [
"self"
] | null | RegexpSplitExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpSplitExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: RegexpSplitExpr |
method | __str__ | fenic.core._logical_plan.expressions.text.RegexpSplitExpr.__str__ | null | null | true | false | 646 | 647 | null | str | null | [
"self"
] | null | RegexpSplitExpr | Type: method
Member Name: __str__
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpSplitExpr.__str__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: str
Parent Class: RegexpSplitExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.RegexpSplitExpr._eq_specific | null | null | false | true | 649 | 650 | null | bool | null | [
"self",
"other"
] | null | RegexpSplitExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpSplitExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: RegexpSplitExpr |
class | SplitPartExpr | fenic.core._logical_plan.expressions.text.SplitPartExpr | Expression for splitting a string column and returning a specific part.
This expression splits each string by a delimiter and returns the specified part (1-based indexing).
The delimiter and part number can be either literal values or column expressions.
When either is a column expression, the operation is performed d... | null | true | false | 652 | 691 | null | null | null | null | [
"ValidatedSignature",
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: SplitPartExpr
Qualified Name: fenic.core._logical_plan.expressions.text.SplitPartExpr
Docstring: Expression for splitting a string column and returning a specific part.
This expression splits each string by a delimiter and returns the specified part (1-based indexing).
The delimiter and part n... |
method | __init__ | fenic.core._logical_plan.expressions.text.SplitPartExpr.__init__ | null | null | true | false | 678 | 684 | null | null | null | [
"self",
"expr",
"delimiter",
"part_number"
] | null | SplitPartExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.SplitPartExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "delimiter", "part_number"]
Returns: none
Parent Class: SplitPartExpr |
method | children | fenic.core._logical_plan.expressions.text.SplitPartExpr.children | null | null | true | false | 690 | 691 | null | List[LogicalExpr] | null | [
"self"
] | null | SplitPartExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.SplitPartExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: SplitPartExpr |
class | StringCasingExpr | fenic.core._logical_plan.expressions.text.StringCasingExpr | Expression for converting the case of a string column.
This expression creates a new string column with all values converted to the specified case.
Args:
expr: The input string column expression
case: The case to convert the string to ("upper", "lower", "title")
Raises:
TypeError: If the input expression... | null | true | false | 694 | 722 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: StringCasingExpr
Qualified Name: fenic.core._logical_plan.expressions.text.StringCasingExpr
Docstring: Expression for converting the case of a string column.
This expression creates a new string column with all values converted to the specified case.
Args:
expr: The input string column ex... |
method | __init__ | fenic.core._logical_plan.expressions.text.StringCasingExpr.__init__ | null | null | true | false | 709 | 712 | null | null | null | [
"self",
"expr",
"case"
] | null | StringCasingExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.StringCasingExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "case"]
Returns: none
Parent Class: StringCasingExpr |
method | children | fenic.core._logical_plan.expressions.text.StringCasingExpr.children | null | null | true | false | 718 | 719 | null | List[LogicalExpr] | null | [
"self"
] | null | StringCasingExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.StringCasingExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: StringCasingExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.StringCasingExpr._eq_specific | null | null | false | true | 721 | 722 | null | bool | null | [
"self",
"other"
] | null | StringCasingExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.StringCasingExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: StringCasingExpr |
class | StripCharsExpr | fenic.core._logical_plan.expressions.text.StripCharsExpr | Expression for removing specified characters from string ends.
This expression creates a new string column with specified characters removed from
the beginning and/or end of each string. The characters to remove can be specified
as a literal string, a column expression, or None for whitespace.
Args:
expr: The inp... | null | true | false | 725 | 768 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: StripCharsExpr
Qualified Name: fenic.core._logical_plan.expressions.text.StripCharsExpr
Docstring: Expression for removing specified characters from string ends.
This expression creates a new string column with specified characters removed from
the beginning and/or end of each string. The char... |
method | __init__ | fenic.core._logical_plan.expressions.text.StripCharsExpr.__init__ | null | null | true | false | 743 | 752 | null | null | null | [
"self",
"expr",
"chars",
"side"
] | null | StripCharsExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.StripCharsExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "chars", "side"]
Returns: none
Parent Class: StripCharsExpr |
method | children | fenic.core._logical_plan.expressions.text.StripCharsExpr.children | null | null | true | false | 758 | 762 | null | List[LogicalExpr] | null | [
"self"
] | null | StripCharsExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.StripCharsExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: StripCharsExpr |
method | __str__ | fenic.core._logical_plan.expressions.text.StripCharsExpr.__str__ | null | null | true | false | 764 | 765 | null | str | null | [
"self"
] | null | StripCharsExpr | Type: method
Member Name: __str__
Qualified Name: fenic.core._logical_plan.expressions.text.StripCharsExpr.__str__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: str
Parent Class: StripCharsExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.StripCharsExpr._eq_specific | null | null | false | true | 767 | 768 | null | bool | null | [
"self",
"other"
] | null | StripCharsExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.StripCharsExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: StripCharsExpr |
class | ReplaceExpr | fenic.core._logical_plan.expressions.text.ReplaceExpr | Expression for replacing substrings in a string column.
This expression creates a new string column with occurrences of a search pattern
replaced with a replacement string. Both the search pattern and replacement can be
either literal values or column expressions. When either is a column expression,
the operation is p... | null | true | false | 770 | 816 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: ReplaceExpr
Qualified Name: fenic.core._logical_plan.expressions.text.ReplaceExpr
Docstring: Expression for replacing substrings in a string column.
This expression creates a new string column with occurrences of a search pattern
replaced with a replacement string. Both the search pattern and ... |
method | __init__ | fenic.core._logical_plan.expressions.text.ReplaceExpr.__init__ | null | null | true | false | 791 | 803 | null | null | null | [
"self",
"expr",
"search",
"replacement",
"literal"
] | null | ReplaceExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.ReplaceExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "search", "replacement", "literal"]
Returns: none
Parent Class: ReplaceExpr |
method | children | fenic.core._logical_plan.expressions.text.ReplaceExpr.children | null | null | true | false | 809 | 810 | null | List[LogicalExpr] | null | [
"self"
] | null | ReplaceExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.ReplaceExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: ReplaceExpr |
method | __str__ | fenic.core._logical_plan.expressions.text.ReplaceExpr.__str__ | null | null | true | false | 812 | 813 | null | str | null | [
"self"
] | null | ReplaceExpr | Type: method
Member Name: __str__
Qualified Name: fenic.core._logical_plan.expressions.text.ReplaceExpr.__str__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: str
Parent Class: ReplaceExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.ReplaceExpr._eq_specific | null | null | false | true | 815 | 816 | null | bool | null | [
"self",
"other"
] | null | ReplaceExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.ReplaceExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: ReplaceExpr |
class | StrLengthExpr | fenic.core._logical_plan.expressions.text.StrLengthExpr | Expression for calculating the length of a string column.
This expression creates a new integer column with the number of characters in each value
of the input string column.
Args:
expr: The input string column expression
Raises:
TypeError: If the input expression is not a string column | null | true | false | 818 | 842 | null | null | null | null | [
"ValidatedSignature",
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: StrLengthExpr
Qualified Name: fenic.core._logical_plan.expressions.text.StrLengthExpr
Docstring: Expression for calculating the length of a string column.
This expression creates a new integer column with the number of characters in each value
of the input string column.
Args:
expr: The i... |
method | __init__ | fenic.core._logical_plan.expressions.text.StrLengthExpr.__init__ | null | null | true | false | 833 | 835 | null | null | null | [
"self",
"expr"
] | null | StrLengthExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.StrLengthExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr"]
Returns: none
Parent Class: StrLengthExpr |
method | children | fenic.core._logical_plan.expressions.text.StrLengthExpr.children | null | null | true | false | 841 | 842 | null | List[LogicalExpr] | null | [
"self"
] | null | StrLengthExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.StrLengthExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: StrLengthExpr |
class | ByteLengthExpr | fenic.core._logical_plan.expressions.text.ByteLengthExpr | Expression for calculating the length of a string column in bytes.
This expression creates a new integer column with the number of bytes in each value
of the input string column.
Args:
expr: The input string column expression
Raises:
TypeError: If the input expression is not a string column | null | true | false | 845 | 869 | null | null | null | null | [
"ValidatedSignature",
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: ByteLengthExpr
Qualified Name: fenic.core._logical_plan.expressions.text.ByteLengthExpr
Docstring: Expression for calculating the length of a string column in bytes.
This expression creates a new integer column with the number of bytes in each value
of the input string column.
Args:
expr:... |
method | __init__ | fenic.core._logical_plan.expressions.text.ByteLengthExpr.__init__ | null | null | true | false | 860 | 862 | null | null | null | [
"self",
"expr"
] | null | ByteLengthExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.ByteLengthExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr"]
Returns: none
Parent Class: ByteLengthExpr |
method | children | fenic.core._logical_plan.expressions.text.ByteLengthExpr.children | null | null | true | false | 868 | 869 | null | List[LogicalExpr] | null | [
"self"
] | null | ByteLengthExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.ByteLengthExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: ByteLengthExpr |
class | JinjaExpr | fenic.core._logical_plan.expressions.text.JinjaExpr | Expression for evaluating a Jinja template.
This expression creates a new string column with the result of evaluating the Jinja template.
Args:
exprs: The input string column expressions
template: The Jinja template to evaluate | null | true | false | 872 | 905 | null | null | null | null | [
"LogicalExpr"
] | null | Type: class
Member Name: JinjaExpr
Qualified Name: fenic.core._logical_plan.expressions.text.JinjaExpr
Docstring: Expression for evaluating a Jinja template.
This expression creates a new string column with the result of evaluating the Jinja template.
Args:
exprs: The input string column expressions
template:... |
method | __init__ | fenic.core._logical_plan.expressions.text.JinjaExpr.__init__ | null | null | true | false | 882 | 886 | null | null | null | [
"self",
"exprs",
"template",
"strict"
] | null | JinjaExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.JinjaExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "exprs", "template", "strict"]
Returns: none
Parent Class: JinjaExpr |
method | children | fenic.core._logical_plan.expressions.text.JinjaExpr.children | null | null | true | false | 888 | 889 | null | List[LogicalExpr] | null | [
"self"
] | null | JinjaExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.JinjaExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: JinjaExpr |
method | to_column_field | fenic.core._logical_plan.expressions.text.JinjaExpr.to_column_field | null | null | true | false | 891 | 899 | null | ColumnField | null | [
"self",
"plan",
"session_state"
] | null | JinjaExpr | Type: method
Member Name: to_column_field
Qualified Name: fenic.core._logical_plan.expressions.text.JinjaExpr.to_column_field
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "plan", "session_state"]
Returns: ColumnField
Parent Class: JinjaExpr |
method | __str__ | fenic.core._logical_plan.expressions.text.JinjaExpr.__str__ | null | null | true | false | 901 | 902 | null | str | null | [
"self"
] | null | JinjaExpr | Type: method
Member Name: __str__
Qualified Name: fenic.core._logical_plan.expressions.text.JinjaExpr.__str__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: str
Parent Class: JinjaExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.JinjaExpr._eq_specific | null | null | false | true | 904 | 905 | null | bool | null | [
"self",
"other"
] | null | JinjaExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.JinjaExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: JinjaExpr |
class | FuzzyRatioExpr | fenic.core._logical_plan.expressions.text.FuzzyRatioExpr | Expression for computing the similarity between two strings using a fuzzy matching algorithm.
This expression creates a new float column with the similarity score between the two input strings.
The similarity score is computed using a fuzzy matching algorithm.
Args:
expr: The input string column expression
ot... | null | true | false | 907 | 934 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: FuzzyRatioExpr
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyRatioExpr
Docstring: Expression for computing the similarity between two strings using a fuzzy matching algorithm.
This expression creates a new float column with the similarity score between the two input strings.
T... |
method | __init__ | fenic.core._logical_plan.expressions.text.FuzzyRatioExpr.__init__ | null | null | true | false | 920 | 924 | null | null | null | [
"self",
"expr",
"other",
"method"
] | null | FuzzyRatioExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyRatioExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "other", "method"]
Returns: none
Parent Class: FuzzyRatioExpr |
method | children | fenic.core._logical_plan.expressions.text.FuzzyRatioExpr.children | null | null | true | false | 930 | 931 | null | List[LogicalExpr] | null | [
"self"
] | null | FuzzyRatioExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyRatioExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: FuzzyRatioExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.FuzzyRatioExpr._eq_specific | null | null | false | true | 933 | 934 | null | bool | null | [
"self",
"other"
] | null | FuzzyRatioExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyRatioExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: FuzzyRatioExpr |
class | FuzzyTokenSortRatioExpr | fenic.core._logical_plan.expressions.text.FuzzyTokenSortRatioExpr | Expression for computing the fuzzy token sort ratio between two strings.
This expression creates a new float column with the fuzzy token sort ratio between the two input strings.
The fuzzy token sort ratio is computed using a fuzzy matching algorithm. | null | true | false | 936 | 959 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: FuzzyTokenSortRatioExpr
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyTokenSortRatioExpr
Docstring: Expression for computing the fuzzy token sort ratio between two strings.
This expression creates a new float column with the fuzzy token sort ratio between the two input strings... |
method | __init__ | fenic.core._logical_plan.expressions.text.FuzzyTokenSortRatioExpr.__init__ | null | null | true | false | 945 | 949 | null | null | null | [
"self",
"expr",
"other",
"method"
] | null | FuzzyTokenSortRatioExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyTokenSortRatioExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "other", "method"]
Returns: none
Parent Class: FuzzyTokenSortRatioExpr |
method | children | fenic.core._logical_plan.expressions.text.FuzzyTokenSortRatioExpr.children | null | null | true | false | 955 | 956 | null | List[LogicalExpr] | null | [
"self"
] | null | FuzzyTokenSortRatioExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyTokenSortRatioExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: FuzzyTokenSortRatioExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.FuzzyTokenSortRatioExpr._eq_specific | null | null | false | true | 958 | 959 | null | bool | null | [
"self",
"other"
] | null | FuzzyTokenSortRatioExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyTokenSortRatioExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: FuzzyTokenSortRatioExpr |
class | FuzzyTokenSetRatioExpr | fenic.core._logical_plan.expressions.text.FuzzyTokenSetRatioExpr | Expression for computing the fuzzy token set ratio between two strings.
This expression creates a new float column with the fuzzy token set ratio between the two input strings.
The fuzzy token set ratio is computed using a fuzzy matching algorithm. | null | true | false | 961 | 984 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: FuzzyTokenSetRatioExpr
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyTokenSetRatioExpr
Docstring: Expression for computing the fuzzy token set ratio between two strings.
This expression creates a new float column with the fuzzy token set ratio between the two input strings.
Th... |
method | __init__ | fenic.core._logical_plan.expressions.text.FuzzyTokenSetRatioExpr.__init__ | null | null | true | false | 970 | 974 | null | null | null | [
"self",
"expr",
"other",
"method"
] | null | FuzzyTokenSetRatioExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyTokenSetRatioExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "other", "method"]
Returns: none
Parent Class: FuzzyTokenSetRatioExpr |
method | children | fenic.core._logical_plan.expressions.text.FuzzyTokenSetRatioExpr.children | null | null | true | false | 980 | 981 | null | List[LogicalExpr] | null | [
"self"
] | null | FuzzyTokenSetRatioExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyTokenSetRatioExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: FuzzyTokenSetRatioExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.FuzzyTokenSetRatioExpr._eq_specific | null | null | false | true | 983 | 984 | null | bool | null | [
"self",
"other"
] | null | FuzzyTokenSetRatioExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.FuzzyTokenSetRatioExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: FuzzyTokenSetRatioExpr |
class | RegexpCountExpr | fenic.core._logical_plan.expressions.text.RegexpCountExpr | Expression for counting regex pattern matches in a string.
Counts the number of times the regex pattern is matched in the string.
Args:
expr: The input string column expression
pattern: The regex pattern to count
Raises:
ValidationError: If the regex pattern is invalid | null | true | false | 987 | 1,021 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: RegexpCountExpr
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpCountExpr
Docstring: Expression for counting regex pattern matches in a string.
Counts the number of times the regex pattern is matched in the string.
Args:
expr: The input string column expression
pattern... |
method | __init__ | fenic.core._logical_plan.expressions.text.RegexpCountExpr.__init__ | null | null | true | false | 1,002 | 1,011 | null | null | null | [
"self",
"expr",
"pattern"
] | null | RegexpCountExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpCountExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "pattern"]
Returns: none
Parent Class: RegexpCountExpr |
method | children | fenic.core._logical_plan.expressions.text.RegexpCountExpr.children | null | null | true | false | 1,017 | 1,018 | null | List[LogicalExpr] | null | [
"self"
] | null | RegexpCountExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpCountExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: RegexpCountExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.RegexpCountExpr._eq_specific | null | null | false | true | 1,020 | 1,021 | null | bool | null | [
"self",
"other"
] | null | RegexpCountExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpCountExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: RegexpCountExpr |
class | RegexpExtractExpr | fenic.core._logical_plan.expressions.text.RegexpExtractExpr | Expression for extracting a regex group from a string.
Extracts a specific group matched by the regex pattern from the string.
Args:
expr: The input string column expression
pattern: The regex pattern with capture groups
idx: The group index to extract (0 = entire match, 1+ = capture groups)
Raises:
... | null | true | false | 1,024 | 1,060 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: RegexpExtractExpr
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpExtractExpr
Docstring: Expression for extracting a regex group from a string.
Extracts a specific group matched by the regex pattern from the string.
Args:
expr: The input string column expression
patter... |
method | __init__ | fenic.core._logical_plan.expressions.text.RegexpExtractExpr.__init__ | null | null | true | false | 1,040 | 1,050 | null | null | null | [
"self",
"expr",
"pattern",
"idx"
] | null | RegexpExtractExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpExtractExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "pattern", "idx"]
Returns: none
Parent Class: RegexpExtractExpr |
method | children | fenic.core._logical_plan.expressions.text.RegexpExtractExpr.children | null | null | true | false | 1,056 | 1,057 | null | List[LogicalExpr] | null | [
"self"
] | null | RegexpExtractExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpExtractExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: RegexpExtractExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.RegexpExtractExpr._eq_specific | null | null | false | true | 1,059 | 1,060 | null | bool | null | [
"self",
"other"
] | null | RegexpExtractExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpExtractExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: RegexpExtractExpr |
class | RegexpExtractAllExpr | fenic.core._logical_plan.expressions.text.RegexpExtractAllExpr | Expression for extracting all regex matches from a string.
Extracts all strings that match the regex pattern, optionally from a specific group.
Returns an array of matches.
Args:
expr: The input string column expression
pattern: The regex pattern with optional capture groups
idx: The group index to extrac... | null | true | false | 1,063 | 1,100 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: RegexpExtractAllExpr
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpExtractAllExpr
Docstring: Expression for extracting all regex matches from a string.
Extracts all strings that match the regex pattern, optionally from a specific group.
Returns an array of matches.
Args:
... |
method | __init__ | fenic.core._logical_plan.expressions.text.RegexpExtractAllExpr.__init__ | null | null | true | false | 1,080 | 1,090 | null | null | null | [
"self",
"expr",
"pattern",
"idx"
] | null | RegexpExtractAllExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpExtractAllExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "pattern", "idx"]
Returns: none
Parent Class: RegexpExtractAllExpr |
method | children | fenic.core._logical_plan.expressions.text.RegexpExtractAllExpr.children | null | null | true | false | 1,096 | 1,097 | null | List[LogicalExpr] | null | [
"self"
] | null | RegexpExtractAllExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpExtractAllExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: RegexpExtractAllExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.RegexpExtractAllExpr._eq_specific | null | null | false | true | 1,099 | 1,100 | null | bool | null | [
"self",
"other"
] | null | RegexpExtractAllExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpExtractAllExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: RegexpExtractAllExpr |
class | RegexpInstrExpr | fenic.core._logical_plan.expressions.text.RegexpInstrExpr | Expression for finding the position of a regex match in a string.
Returns the 1-based position of the first substring that matches the regex pattern.
Returns 0 if no match is found.
Args:
expr: The input string column expression
pattern: The regex pattern to search for
idx: The group index to locate (0 = ... | null | true | false | 1,103 | 1,140 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: RegexpInstrExpr
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpInstrExpr
Docstring: Expression for finding the position of a regex match in a string.
Returns the 1-based position of the first substring that matches the regex pattern.
Returns 0 if no match is found.
Args:
... |
method | __init__ | fenic.core._logical_plan.expressions.text.RegexpInstrExpr.__init__ | null | null | true | false | 1,120 | 1,130 | null | null | null | [
"self",
"expr",
"pattern",
"idx"
] | null | RegexpInstrExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpInstrExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "pattern", "idx"]
Returns: none
Parent Class: RegexpInstrExpr |
method | children | fenic.core._logical_plan.expressions.text.RegexpInstrExpr.children | null | null | true | false | 1,136 | 1,137 | null | List[LogicalExpr] | null | [
"self"
] | null | RegexpInstrExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpInstrExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: RegexpInstrExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.RegexpInstrExpr._eq_specific | null | null | false | true | 1,139 | 1,140 | null | bool | null | [
"self",
"other"
] | null | RegexpInstrExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpInstrExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: RegexpInstrExpr |
class | RegexpSubstrExpr | fenic.core._logical_plan.expressions.text.RegexpSubstrExpr | Expression for extracting the first regex match from a string.
Returns the first substring that matches the regex pattern.
Args:
expr: The input string column expression
pattern: The regex pattern to search for
Raises:
ValidationError: If the regex pattern is invalid | null | true | false | 1,143 | 1,177 | null | null | null | null | [
"ValidatedSignature",
"LogicalExpr"
] | null | Type: class
Member Name: RegexpSubstrExpr
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpSubstrExpr
Docstring: Expression for extracting the first regex match from a string.
Returns the first substring that matches the regex pattern.
Args:
expr: The input string column expression
pattern: The... |
method | __init__ | fenic.core._logical_plan.expressions.text.RegexpSubstrExpr.__init__ | null | null | true | false | 1,158 | 1,167 | null | null | null | [
"self",
"expr",
"pattern"
] | null | RegexpSubstrExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpSubstrExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "pattern"]
Returns: none
Parent Class: RegexpSubstrExpr |
method | children | fenic.core._logical_plan.expressions.text.RegexpSubstrExpr.children | null | null | true | false | 1,173 | 1,174 | null | List[LogicalExpr] | null | [
"self"
] | null | RegexpSubstrExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpSubstrExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: RegexpSubstrExpr |
method | _eq_specific | fenic.core._logical_plan.expressions.text.RegexpSubstrExpr._eq_specific | null | null | false | true | 1,176 | 1,177 | null | bool | null | [
"self",
"other"
] | null | RegexpSubstrExpr | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.expressions.text.RegexpSubstrExpr._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: RegexpSubstrExpr |
module | case | fenic.core._logical_plan.expressions.case | null | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_logical_plan/expressions/case.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: case
Qualified Name: fenic.core._logical_plan.expressions.case
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
class | WhenExpr | fenic.core._logical_plan.expressions.case.WhenExpr | null | null | true | false | 14 | 48 | null | null | null | null | [
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: WhenExpr
Qualified Name: fenic.core._logical_plan.expressions.case.WhenExpr
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.expressions.case.WhenExpr.__init__ | null | null | true | false | 15 | 20 | null | null | null | [
"self",
"expr",
"condition",
"value"
] | null | WhenExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.case.WhenExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "condition", "value"]
Returns: none
Parent Class: WhenExpr |
method | __str__ | fenic.core._logical_plan.expressions.case.WhenExpr.__str__ | null | null | true | false | 22 | 23 | null | null | null | [
"self"
] | null | WhenExpr | Type: method
Member Name: __str__
Qualified Name: fenic.core._logical_plan.expressions.case.WhenExpr.__str__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: none
Parent Class: WhenExpr |
method | to_column_field | fenic.core._logical_plan.expressions.case.WhenExpr.to_column_field | null | null | true | false | 25 | 41 | null | ColumnField | null | [
"self",
"plan",
"session_state"
] | null | WhenExpr | Type: method
Member Name: to_column_field
Qualified Name: fenic.core._logical_plan.expressions.case.WhenExpr.to_column_field
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "plan", "session_state"]
Returns: ColumnField
Parent Class: WhenExpr |
method | children | fenic.core._logical_plan.expressions.case.WhenExpr.children | null | null | true | false | 43 | 48 | null | List[LogicalExpr] | null | [
"self"
] | null | WhenExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.case.WhenExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: WhenExpr |
class | OtherwiseExpr | fenic.core._logical_plan.expressions.case.OtherwiseExpr | null | null | true | false | 51 | 73 | null | null | null | null | [
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: OtherwiseExpr
Qualified Name: fenic.core._logical_plan.expressions.case.OtherwiseExpr
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.expressions.case.OtherwiseExpr.__init__ | null | null | true | false | 52 | 56 | null | null | null | [
"self",
"expr",
"value"
] | null | OtherwiseExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.case.OtherwiseExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "value"]
Returns: none
Parent Class: OtherwiseExpr |
method | __str__ | fenic.core._logical_plan.expressions.case.OtherwiseExpr.__str__ | null | null | true | false | 58 | 59 | null | null | null | [
"self"
] | null | OtherwiseExpr | Type: method
Member Name: __str__
Qualified Name: fenic.core._logical_plan.expressions.case.OtherwiseExpr.__str__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: none
Parent Class: OtherwiseExpr |
method | to_column_field | fenic.core._logical_plan.expressions.case.OtherwiseExpr.to_column_field | null | null | true | false | 61 | 70 | null | ColumnField | null | [
"self",
"plan",
"session_state"
] | null | OtherwiseExpr | Type: method
Member Name: to_column_field
Qualified Name: fenic.core._logical_plan.expressions.case.OtherwiseExpr.to_column_field
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "plan", "session_state"]
Returns: ColumnField
Parent Class: OtherwiseExpr |
method | children | fenic.core._logical_plan.expressions.case.OtherwiseExpr.children | null | null | true | false | 72 | 73 | null | List[LogicalExpr] | null | [
"self"
] | null | OtherwiseExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.case.OtherwiseExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: OtherwiseExpr |
module | array | fenic.core._logical_plan.expressions.array | Array-specific expression classes for the logical plan.
This module contains expression classes for array manipulation operations. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_logical_plan/expressions/array.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: array
Qualified Name: fenic.core._logical_plan.expressions.array
Docstring: Array-specific expression classes for the logical plan.
This module contains expression classes for array manipulation operations.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Re... |
class | ArrayLengthExpr | fenic.core._logical_plan.expressions.array.ArrayLengthExpr | Expression representing array length calculation. | null | true | false | 24 | 38 | null | null | null | null | [
"ValidatedSignature",
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: ArrayLengthExpr
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayLengthExpr
Docstring: Expression representing array length calculation.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.expressions.array.ArrayLengthExpr.__init__ | null | null | true | false | 29 | 31 | null | null | null | [
"self",
"expr"
] | null | ArrayLengthExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayLengthExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr"]
Returns: none
Parent Class: ArrayLengthExpr |
method | children | fenic.core._logical_plan.expressions.array.ArrayLengthExpr.children | null | null | true | false | 37 | 38 | null | List[LogicalExpr] | null | [
"self"
] | null | ArrayLengthExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayLengthExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: ArrayLengthExpr |
class | ArrayDistinctExpr | fenic.core._logical_plan.expressions.array.ArrayDistinctExpr | null | null | true | false | 41 | 53 | null | null | null | null | [
"ValidatedSignature",
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: ArrayDistinctExpr
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayDistinctExpr
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.expressions.array.ArrayDistinctExpr.__init__ | null | null | true | false | 44 | 46 | null | null | null | [
"self",
"expr"
] | null | ArrayDistinctExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayDistinctExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr"]
Returns: none
Parent Class: ArrayDistinctExpr |
method | children | fenic.core._logical_plan.expressions.array.ArrayDistinctExpr.children | null | null | true | false | 52 | 53 | null | List[LogicalExpr] | null | [
"self"
] | null | ArrayDistinctExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayDistinctExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: ArrayDistinctExpr |
class | ArrayContainsExpr | fenic.core._logical_plan.expressions.array.ArrayContainsExpr | Expression representing array contains check. | null | true | false | 56 | 72 | null | null | null | null | [
"ValidatedSignature",
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: ArrayContainsExpr
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayContainsExpr
Docstring: Expression representing array contains check.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.expressions.array.ArrayContainsExpr.__init__ | null | null | true | false | 61 | 65 | null | null | null | [
"self",
"expr",
"other"
] | null | ArrayContainsExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayContainsExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr", "other"]
Returns: none
Parent Class: ArrayContainsExpr |
method | children | fenic.core._logical_plan.expressions.array.ArrayContainsExpr.children | null | null | true | false | 71 | 72 | null | List[LogicalExpr] | null | [
"self"
] | null | ArrayContainsExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayContainsExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: ArrayContainsExpr |
class | ArrayMaxExpr | fenic.core._logical_plan.expressions.array.ArrayMaxExpr | null | null | true | false | 75 | 94 | null | null | null | null | [
"ValidatedDynamicSignature",
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: ArrayMaxExpr
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayMaxExpr
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.expressions.array.ArrayMaxExpr.__init__ | null | null | true | false | 78 | 80 | null | null | null | [
"self",
"expr"
] | null | ArrayMaxExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayMaxExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr"]
Returns: none
Parent Class: ArrayMaxExpr |
method | children | fenic.core._logical_plan.expressions.array.ArrayMaxExpr.children | null | null | true | false | 86 | 87 | null | List[LogicalExpr] | null | [
"self"
] | null | ArrayMaxExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayMaxExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: ArrayMaxExpr |
method | _infer_dynamic_return_type | fenic.core._logical_plan.expressions.array.ArrayMaxExpr._infer_dynamic_return_type | Return the element type of the array. | null | false | true | 89 | 94 | null | DataType | null | [
"self",
"arg_types",
"plan",
"session_state"
] | null | ArrayMaxExpr | Type: method
Member Name: _infer_dynamic_return_type
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayMaxExpr._infer_dynamic_return_type
Docstring: Return the element type of the array.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "arg_types", "plan", "session_s... |
class | ArrayMinExpr | fenic.core._logical_plan.expressions.array.ArrayMinExpr | null | null | true | false | 97 | 116 | null | null | null | null | [
"ValidatedDynamicSignature",
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: ArrayMinExpr
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayMinExpr
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.expressions.array.ArrayMinExpr.__init__ | null | null | true | false | 100 | 102 | null | null | null | [
"self",
"expr"
] | null | ArrayMinExpr | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayMinExpr.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "expr"]
Returns: none
Parent Class: ArrayMinExpr |
method | children | fenic.core._logical_plan.expressions.array.ArrayMinExpr.children | null | null | true | false | 108 | 109 | null | List[LogicalExpr] | null | [
"self"
] | null | ArrayMinExpr | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayMinExpr.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: ArrayMinExpr |
method | _infer_dynamic_return_type | fenic.core._logical_plan.expressions.array.ArrayMinExpr._infer_dynamic_return_type | Return the element type of the array. | null | false | true | 111 | 116 | null | DataType | null | [
"self",
"arg_types",
"plan",
"session_state"
] | null | ArrayMinExpr | Type: method
Member Name: _infer_dynamic_return_type
Qualified Name: fenic.core._logical_plan.expressions.array.ArrayMinExpr._infer_dynamic_return_type
Docstring: Return the element type of the array.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "arg_types", "plan", "session_s... |
class | ArraySortExpr | fenic.core._logical_plan.expressions.array.ArraySortExpr | null | null | true | false | 119 | 131 | null | null | null | null | [
"ValidatedSignature",
"UnparameterizedExpr",
"LogicalExpr"
] | null | Type: class
Member Name: ArraySortExpr
Qualified Name: fenic.core._logical_plan.expressions.array.ArraySortExpr
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.