-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstd_array_for_each.proto.json
More file actions
103 lines (103 loc) · 1.84 KB
/
Copy pathstd_array_for_each.proto.json
File metadata and controls
103 lines (103 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"runtimeName": "std::list::for_each",
"runtimeParameterDefinitions": [
{
"dataTypeIdentifier": {
"genericType": {
"dataTypeIdentifier": "LIST",
"genericMappers": [
{
"source": [
{
"genericKey": "R"
}
],
"target": "T",
"genericCombinations": []
}
]
}
},
"runtimeName": "list",
"defaultValue": null,
"name": [
{
"code": "en-US",
"content": "Input List"
}
],
"description": [
{
"code": "en-US",
"content": "Each element of this list will be passed to the provided consumer function for processing."
}
],
"documentation": []
},
{
"dataTypeIdentifier": {
"genericType": {
"dataTypeIdentifier": "CONSUMER",
"genericMappers": [
{
"source": [
{
"genericKey": "R"
}
],
"target": "T",
"genericCombinations": []
}
]
}
},
"runtimeName": "consumer",
"defaultValue": null,
"name": [
{
"code": "en-US",
"content": "Consumer Function"
}
],
"description": [
{
"code": "en-US",
"content": "This function is invoked once for each element in the list. It is not expected to return a value."
}
],
"documentation": []
}
],
"returnTypeIdentifier": null,
"throwsError": false,
"genericKeys": [
"R"
],
"name": [
{
"code": "en-US",
"content": "For Each Element"
}
],
"description": [
{
"code": "en-US",
"content": "Executes a consumer function for each element in the list."
}
],
"documentation": [],
"alias": [
{
"code": "en-US",
"content": "for_each;array;list;collection;std;for;each"
}
],
"displayMessage": [
{
"code": "en-US",
"content": "For each in ${list} do ${consumer}"
}
],
"deprecationMessage": [],
"displayIcon": "tabler:list"
}