Backup Script
home
Setup

Compare

Description

The compare node takes two inputs of any kind of data and compares the two. It will return a boolean depending on the operation you choose.

Inputs

The two data inputs can be used to compare any type of data. Usually, these will be two data points of the same type.

Outputs

The boolean output is the result of the comparison.

Settings

Equal (=): Returns true if both inputs are the same
Not Equal (≠): Returns true if the two inputs are different
Less Than (<): Returns true if the first input is less than the second one (for numbers)
Greater Than (>): Returns true if the first input is greater than the second one (for numbers)
Less Than or Equal (≤): Returns true if the first input is less than or equal to the second one (for numbers)
Greater Than or Equal (≥): Returns true if the first input is greater than or equal to the second one (for numbers)
TOP