Skip to content

Commit 8e0ce40

Browse files
committed
link toobject() and items()
1 parent 6105f4d commit 8e0ce40

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

articles/azure-resource-manager/bicep/bicep-functions-lambda.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Describes the lambda functions to use in a Bicep file.
44
author: mumian
55
ms.topic: conceptual
66
ms.author: jgao
7-
ms.date: 02/09/2023
7+
ms.date: 03/15/2023
88

99
---
1010
# Lambda functions for Bicep
@@ -302,7 +302,7 @@ The output from the preceding example sorts the dog objects from the youngest to
302302

303303
`toObject(inputArray, lambda expression, [lambda expression])`
304304

305-
Converts an array to an object with a custom key function and optional custom value function.
305+
Converts an array to an object with a custom key function and optional custom value function. See [items](bicep-functions-object.md#items) about converting an object to an array.
306306

307307
Namespace: [sys](bicep-functions.md#namespaces-for-functions).
308308

articles/azure-resource-manager/bicep/bicep-functions-object.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Describes the functions to use in a Bicep file for working with obj
44
author: mumian
55
ms.author: jgao
66
ms.topic: conceptual
7-
ms.date: 12/09/2022
7+
ms.date: 03/19/2023
88
---
99

1010
# Object functions for Bicep
@@ -166,7 +166,7 @@ The output from the preceding example with the default values is:
166166

167167
`items(object)`
168168

169-
Converts a dictionary object to an array.
169+
Converts a dictionary object to an array. See [toObject](bicep-functions-lambda.md#toobject) about converting an array to an object.
170170

171171
Namespace: [sys](bicep-functions.md#namespaces-for-functions).
172172

articles/azure-resource-manager/templates/template-functions-lambda.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Describes the lambda functions to use in an Azure Resource Manager
44
author: mumian
55
ms.topic: conceptual
66
ms.author: jgao
7-
ms.date: 02/09/2023
7+
ms.date: 03/15/2023
88
---
99

1010
# Lambda functions for ARM templates
@@ -415,7 +415,7 @@ The output from the preceding example sorts the dog objects from the youngest to
415415

416416
`toObject(inputArray, lambda function, [lambda function])`
417417

418-
Converts an array to an object with a custom key function and optional custom value function.
418+
Converts an array to an object with a custom key function and optional custom value function. See [items](template-functions-object.md#items) about converting an object to an array.
419419

420420
In Bicep, use the [toObject](../templates/template-functions-lambda.md#toobject) function.
421421

articles/azure-resource-manager/templates/template-functions-object.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ The output from the preceding example with the default values is:
168168

169169
`items(object)`
170170

171-
Converts a dictionary object to an array.
171+
Converts a dictionary object to an array. See [toObject](template-functions-lambda.md#toobject) about converting an array to an object.
172172

173173
In Bicep, use the [items](../bicep/bicep-functions-object.md#items).
174174

0 commit comments

Comments
 (0)