Concat module
Concat
Bases: Module
Perform a concatenation operation.
It takes as input a list of data models, and returns a concatenation of them.
If any input is None, an exception is raised.
Table:
x1 |
x2 |
Concat (+ ) |
---|---|---|
x1 |
x2 |
x1 + x2 |
x1 |
None |
Exception |
None |
x2 |
Exception |
None |
None |
Exception |
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**kwargs
|
keyword arguments
|
Standard keyword arguments for the module. |
{}
|