logic:fields included?
Version: 0.0.0
Description
Checks if one field belongs to another.
Inputs
| Input | Name | Expected type(s) | Description |
|---|---|---|---|
| Pin 0 Required | fieldA | field | |
| Pin 1 Required | fieldB | field | |
| Pin 2 Required | double_value | double | Double positive small value. Smallest value considered during the comparison step. All the absolute values in the field less than this value are considered null, (default value: 1.0e-14). |
| Pin 3 | double_tolerance | double | Double relative tolerance. Maximum tolerance gap between two compared values. Values within relative tolerance are considered identical. Formula is (v1-v2)/v2 < relativeTol. Default is 0.001. |
Outputs
| Output | Name | Expected type(s) | Description |
|---|---|---|---|
| Pin 0 | included | bool | bool (true if belongs...) |
| Pin 1 | message | string |
Configurations
| Name | Expected type(s) | Default value | Description |
|---|---|---|---|
| mutex | bool | false | If this option is set to true, the shared memory is prevented from being simultaneously accessed by multiple threads. |
Scripting
Category: logic
Plugin: core
Scripting name: included_fields
Full name: logic.included_fields
Internal name: Are_fields_included
License: None
Changelog
- Version 0.0.0: Initial release.