Skip to content

Commit 92bbda5

Browse files
committed
Add documentation for the "keys" node.
1 parent 522bb02 commit 92bbda5

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

node/reference/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ List
129129
* [Cull](/node/reference/list/cull.html): Remove all items from the list where the corresponding boolean is false.
130130
* [Distinct](/node/reference/list/distinct.html): Remove all duplicate items from the list.
131131
* [First](/node/reference/list/first.html): Take the first item of the list.
132+
* [Keys](/node/reference/list/keys.html): Retrieve the keys of a map.
132133
* [Last](/node/reference/list/last.html): Take the last item of the list.
133134
* [Pick](/node/reference/list/pick.html): Pick items from the list in random order.
134135
* [Repeat](/node/reference/list/repeat.html): Repeat the list a number of times.

node/reference/list/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ notes: AUTO-GENERATED - DO NOT EDIT. Use the autoref.py script to re-generate th
99
* [Cull](/node/reference/list/cull.html): Remove all items from the list where the corresponding boolean is false.
1010
* [Distinct](/node/reference/list/distinct.html): Remove all duplicate items from the list.
1111
* [First](/node/reference/list/first.html): Take the first item of the list.
12+
* [Keys](/node/reference/list/keys.html): Retrieve the keys of a map.
1213
* [Last](/node/reference/list/last.html): Take the last item of the list.
1314
* [Pick](/node/reference/list/pick.html): Pick items from the list in random order.
1415
* [Repeat](/node/reference/list/repeat.html): Repeat the list a number of times.

node/reference/list/keys.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: reference
3+
library: list
4+
node: keys
5+
title: Keys
6+
image: keys.png
7+
---
8+
Retrieve the keys of a map.
9+
10+
* **Map**: The input map.
11+
12+
## Notes
13+
* This node can be used to retrieve the headers of a [CSV file](/node/reference/data/import_csv.html).
14+
* This node also lists the properties of graphic objects, like a [rect](/node/reference/corevector/rect.html) node. You can use this list with the [lookup](/node/reference/data/lookup.html) node, for example to retrieve the `bounds`.
15+

node/reference/list/keys.png

683 Bytes
Loading

0 commit comments

Comments
 (0)