Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 456 Bytes

comparisonFunctionIsAlwaysTrueOrFalse.md

File metadata and controls

13 lines (7 loc) · 456 Bytes

Pattern: Comparison of two identical variables

Issue: -

Description

Comparison of two identical variables with isless(varName,varName) always evaluates to false.

The function isless is designed to compare two variables. Calling this function with one variable for both parameters leads to a statement which is always true or false.

Further Reading