File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed
articles/azure-resource-manager Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -219,11 +219,11 @@ output boolEqual bool = firstBool == secondBool
219
219
220
220
Output from the example:
221
221
222
- | Name | Type | Value |
223
- | ---- | ---- | ---- |
224
- | ` intEqual ` | boolean | true |
225
- | ` stringEqual ` | boolean | false |
226
- | ` boolEqual ` | boolean | true |
222
+ | Name | Type | Value | Note |
223
+ | ---- | ---- | ----- | ---- |
224
+ | ` intEqual ` | boolean | true | |
225
+ | ` stringEqual ` | boolean | false | The result is ` false ` because the comparison is case-sensitive. |
226
+ | ` boolEqual ` | boolean | true | |
227
227
228
228
When comparing arrays, the two arrays must have the same elements and order. The arrays don't need to be assigned to each other.
229
229
Original file line number Diff line number Diff line change @@ -101,12 +101,12 @@ The following example checks different types of values for equality. All the def
101
101
102
102
The output from the preceding example with the default values is:
103
103
104
- | Name | Type | Value |
105
- | ---- | ---- | ----- |
106
- | checkInts | Bool | True |
107
- | checkStrings | Bool | False |
108
- | checkArrays | Bool | True |
109
- | checkObjects | Bool | True |
104
+ | Name | Type | Value | Note |
105
+ | ---- | ---- | ----- | ---- |
106
+ | checkInts | Bool | True | |
107
+ | checkStrings | Bool | False | The result is ` false ` becasue the comparison is case-sensitive. |
108
+ | checkArrays | Bool | True | |
109
+ | checkObjects | Bool | True | |
110
110
111
111
The following example template uses [ not] ( template-functions-logical.md#not ) with ** equals** .
112
112
You can’t perform that action at this time.
0 commit comments