Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions doc/_admin-guide/080_Log/030_Filters/002_Comparing_macro_values.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,13 @@ Note that:

The following operators are available:

| Numerical operator |String operator | Meaning|
|--------------------|-----------------|----------------------|
| == | eq | Equals|
| != | ne | Not equal to|
| \> | gt | Greater than|
| \< | lt | Less than|
| \>= | ge | Greater than or equal|
| =\< | le | Less than or equal|
| Numerical Operator | String Operator | Meaning |
|--------------------|-----------------|----------------------------------|
| == | eq | Equals |
| === | | Equals and same type |
| != | ne | Not equal to |
| !== | | Not equal to and same type |
| > | gt | Greater than |
| < | lt | Less than |
| >= | ge | Greater than or equal to |
| <= | le | Less than or equal to |