And module
And
Bases: Module
Perform a logical And operation.
It takes as input a list of data models, and returns a concatenation of them.
If any input is None, then it output None.
Table:
x1 |
x2 |
Logical And (& ) |
---|---|---|
x1 |
x2 |
x1 + x2 |
x1 |
None |
None |
None |
x2 |
None |
None |
None |
None |
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**kwargs
|
keyword arguments
|
Standard keyword arguments for the module. |
{}
|