Docs
BlupLearnSupportDownload
  • Home 🏠
  • Wiki
    • Design (UI) ✏️
      • Blup Top Bar
      • Blup Menu Bar
      • Pages/Layers Panel
      • Toolkit
      • Insert Panel
        • TextField Widget
        • Progress Widget
        • FAB Widget
        • Icon Widget
        • Lottie Animation Widget
        • Text Button Widget
        • Appbar Widget
        • Checkbox Widget
        • Switch Widget
        • Slider Widget
        • Radio Widget
        • Progress bar Widget
        • Multi choice dialog Widget
        • Web View Widget
        • Camera View Widget
        • Map View Widget
        • Date Picker Widget
        • Time Picker Widget
        • IOS Date Picker Widget
        • IOS Timer Widget
        • Alert Dialog box Widget
        • Dropdown Menu Widget
      • Properties Panel
        • Pages Properties
        • Text Properties
        • List Properties
        • Rectangle Properties
      • Page Canvas
      • Choose from Assets
      • Right-Click Menu in Design
      • How to use navigate page in Blup
    • Logics ⚡
      • UI Nodes
        • Rectangle UI Node
        • Text UI Node
        • Group UI Node
        • List UI Node
        • Page ListView UI Node
      • Helper Nodes
        • Boolean Nodes
        • Date Time Nodes
        • Double Nodes
        • Duration Nodes
        • Integers Nodes
        • Json Nodes
        • List Nodes
        • Map Nodes
        • String Nodes
      • Variables Node Section
      • Function Node Section
      • Maths Node Section
      • Flow Control Section
      • Relational Operators Section
      • Logical Operators Section
      • System Node Section
      • SDK Library Section
      • Blup Sheet API Node Section
    • Backend 🔗
      • Sheets
      • SQL
    • Blup Code Editor
      • File Explorer
      • Editor Area
    • Publish to stores 🚀(Ship)
      • iOS Cloud Build 😮‍💨
        • Configure ⚙️
        • Run ▶️
      • Play Store
    • Build Your First App
      • TODO App
  • Blup Settings
  • Import from Figma
  • How to use WebView in Blup
  • How to use Google Maps in Blup
  • How to use the camera in blup?
  • How to add Splash screen in Blup?
  • How to know Debug prints in blup
  • How to use Google sign in in Blup
  • Creating sign up/ sign in in Blup
Powered by GitBook
On this page
  • Relational Operator Section
  • Integer Relational Operator Sub-Section
  • Int | Greater than
  • Int | Greater than or Equal To
  • Int | Less than
  • Int | Less than or Equal To
  • Int | Is Equal To
  • Int | Not Equal To
  • Double Relational Operator Sub-Section
  • Double | Greater than
  • Double | Greater than or Equal To
  • Double | Less than
  • Double | Less than or Equal To
  • Double | Is Equal To
  • Double | Not Equal To
  • Duration Relational Operator Sub-Section
  • Duration | Greater than
  • Duration | Greater than or Equal To
  • Duration | Less than
  • Duration | Less than or Equal To
  • Duration | Is Equal To
  • Duration | Not Equal To
  • Music to go with.

Was this helpful?

Edit on GitHub
  1. Wiki
  2. Logics ⚡

Relational Operators Section

Use relational operators in Blup to compare values and make decisions based on those comparisons.

PreviousFlow Control SectionNextLogical Operators Section

Last updated 1 year ago

Was this helpful?

Relational Operator Section

Relational operator nodes exist for three types of variable nodes:

1. Integer relational operators.

2. Double relational operators.

3. Duration relational operators.

Integer Relational Operator Sub-Section

In this sub-section, nodes facilitating relational comparison between integer numbers are presented.

Int | Greater than

This node compares two integer numbers and returns true if the first number (A) is greater than the second number (B).

Components of Greater than

Component
Description

A

Input node providing the first integer number (A).

B

Input node providing the second integer number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A > B

Output node providing the result of the comparison in Boolean.

Int | Greater than or Equal To

This node performs a greater than or equal to comparison between two integer numbers (A & B).

Components of Greater than or Equal To

Component
Description

A

Input node providing the first integer number (A).

B

Input node providing the second integer number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A >= B

Output node providing the result of the comparison in Boolean.

Int | Less than

This node compares two integer numbers and returns true if the first number (A) is less than the second number (B).

Components of Less Than

Component
Description

A

Input node providing the first integer number (A).

B

Input node providing the second integer number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A < B

Output node providing the result of the comparison in Boolean.

Int | Less than or Equal To

This node performs a less than or equal to comparison between two integer numbers (A & B).

Components of Less than or Equal To

Component
Description

A

Input node providing the first integer number (A).

B

Input node providing the second integer number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A <= B

Output node providing the result of the comparison in Boolean.

Int | Is Equal To

This node checks whether two integer numbers (A & B) are equal.

Components of Is Equal To

Component
Description

A

Input node providing the first integer number (A).

B

Input node providing the second integer number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A == B

Output node providing the result of the comparison in Boolean.

Int | Not Equal To

This node checks whether two integer numbers (A & B) are not equal.

Components of Not Equal To

Component
Description

A

Input node providing the first integer number (A).

B

Input node providing the second integer number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A != B

Output node providing the result of the comparison in Boolean.

Double Relational Operator Sub-Section

Double | Greater than

This node compares two decimal numbers and returns true if the first number (A) is greater than the second number (B).

Components of Greater than

Component
Description

A

Input node providing the first decimal number (A).

B

Input node providing the second decimal number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A > B

Output node providing the result of the comparison in Boolean.

Double | Greater than or Equal To

This node performs a greater than or equal to comparison between two decimal numbers (A & B).

Components of Greater than or Equal To

Component
Description

A

Input node providing the first decimal number (A).

B

Input node providing the second decimal number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A >= B

Output node providing the result of the comparison in Boolean.

Double | Less than

This node compares two decimal numbers and returns true if the first number (A) is less than the second number (B).

Components of Less Than

Component
Description

A

Input node providing the first decimal number (A).

B

Input node providing the second decimal number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A < B

Output node providing the result of the comparison in Boolean.

Double | Less than or Equal To

This node performs a less than or equal to comparison between two decimal numbers (A & B).

Components of Less than or Equal To

Component
Description

A

Input node providing the first decimal number (A).

B

Input node providing the second decimal number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A <= B

Output node providing the result of the comparison in Boolean.

Double | Is Equal To

This node checks whether two decimal numbers (A & B) are equal.

Components of Is Equal To

Component
Description

A

Input node providing the first decimal number (A).

B

Input node providing the second decimal number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A == B

Output node providing the result of the comparison in Boolean.

Double | Not Equal To

This node checks whether two decimal numbers (A & B) are not equal.

Components of Not Equal To

Component
Description

A

Input node providing the first decimal number (A).

B

Input node providing the second decimal number (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A != B

Output node providing the result of the comparison in Boolean.

Duration Relational Operator Sub-Section

Duration | Greater than

This node compares two durations and returns true if the first duration (A) is greater than the second duration (B).

Components of Greater than

Component
Description

A

Input node providing the first duration (A)

B

Input node providing the second duration (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A > B

Output node providing the result of the comparison in Boolean.

Duration | Greater than or Equal To

This node performs a greater than or equal to comparison between two durations (A & B).

Components of Greater than or Equal To

Component
Description

A

Input node providing the first duration (A)

B

Input node providing the second duration (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A >= B

Output node providing the result of the comparison in Boolean.

Duration | Less than

This node compares two durations and returns true if the first duration (A) is less than the second duration (B).

Components of Less Than

Component
Description

A

Input node providing the first duration (A)

B

Input node providing the second duration (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A < B

Output node providing the result of the comparison in Boolean.

Duration | Less than or Equal To

This node performs a less than or equal to comparison between two durations (A & B).

Components of Less than or Equal To

Component
Description

A

Input node providing the first duration (A)

B

Input node providing the second duration (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A <= B

Output node providing the result of the comparison in Boolean.

Duration | Is Equal To

This node checks whether two durations (A & B) are equal.

Components of Is Equal To

Component
Description

A

Input node providing the first duration (A)

B

Input node providing the second duration (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A == B

Output node providing the result of the comparison in Boolean.

Duration | Not Equal To

This node checks whether two durations (A & B) are not equal.

Components of Not Equal To

Component
Description

A

Input node providing the first duration (A)

B

Input node providing the second duration (B).

Use Run Trigger

Checkbox to generate a run trigger in the node.

A != B

Output node providing the result of the comparison in Boolean.

Music to go with.

If you have any ideas to make Blup better you can share them through our

Discord community channel
Lofi music