Skip to content

Commit a10eead

Browse files
committed
ref: renamed all references of array to list
1 parent 3e518df commit a10eead

33 files changed

+296
-296
lines changed

definitions/http/data_type/array/http_header_map.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"parentType": {
2525
"parentType": {
2626
"genericType": {
27-
"dataTypeIdentifier": "ARRAY",
27+
"dataTypeIdentifier": "LIST",
2828
"genericMappers": [
2929
{
3030
"source": [

definitions/standard/data_type/array/array.proto.json renamed to definitions/standard/data_type/array/list.proto.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"variant": "ARRAY",
3-
"identifier": "ARRAY",
3+
"identifier": "LIST",
44
"name": [
55
{
66
"code": "en-US",
7-
"content": "Generic Array"
7+
"content": "Generic List"
88
}
99
],
1010
"alias": [

definitions/standard/runtime_definition/array/std_array_at.proto.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"runtimeName": "std::array::at",
2+
"runtimeName": "std::list::at",
33
"runtimeParameterDefinitions": [
44
{
55
"dataTypeIdentifier": {
66
"genericType": {
7-
"dataTypeIdentifier": "ARRAY",
7+
"dataTypeIdentifier": "List",
88
"genericMappers": [
99
{
1010
"source": [
@@ -18,24 +18,24 @@
1818
]
1919
}
2020
},
21-
"runtimeName": "array",
21+
"runtimeName": "list",
2222
"defaultValue": null,
2323
"name": [
2424
{
2525
"code": "en-US",
26-
"content": "Input Array"
26+
"content": "Input List"
2727
}
2828
],
2929
"description": [
3030
{
3131
"code": "en-US",
32-
"content": "The array from which to retrieve an element."
32+
"content": "The list from which to retrieve an element."
3333
}
3434
],
3535
"documentation": [
3636
{
3737
"code": "en-US",
38-
"content": "An array containing elements of any type. The element at the specified index will be returned."
38+
"content": "An list containing elements of any type. The element at the specified index will be returned."
3939
}
4040
]
4141
},
@@ -60,7 +60,7 @@
6060
"documentation": [
6161
{
6262
"code": "en-US",
63-
"content": "Specifies the position of the element in the array to return. Must be within the bounds of the array."
63+
"content": "Specifies the position of the element in the list to return. Must be within the bounds of the list."
6464
}
6565
]
6666
}
@@ -75,19 +75,19 @@
7575
"name": [
7676
{
7777
"code": "en-US",
78-
"content": "Get Array Element"
78+
"content": "Get List Element"
7979
}
8080
],
8181
"description": [
8282
{
8383
"code": "en-US",
84-
"content": "Retrieves the element at a specified index from an array."
84+
"content": "Retrieves the element at a specified index from an list."
8585
}
8686
],
8787
"documentation": [
8888
{
8989
"code": "en-US",
90-
"content": "Returns the element located at the given zero-based index within the input array."
90+
"content": "Returns the element located at the given zero-based index within the input list."
9191
}
9292
],
9393
"alias": [
@@ -99,7 +99,7 @@
9999
"displayMessage": [
100100
{
101101
"code": "en-US",
102-
"content": "Get element at ${index} of ${array}"
102+
"content": "Get element at ${index} of ${list}"
103103
}
104104
],
105105
"deprecationMessage": []

definitions/standard/runtime_definition/array/std_array_concat.proto.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"runtimeName": "std::array::concat",
2+
"runtimeName": "std::list::concat",
33
"runtimeParameterDefinitions": [
44
{
55
"dataTypeIdentifier": {
66
"genericType": {
7-
"dataTypeIdentifier": "ARRAY",
7+
"dataTypeIdentifier": "LIST",
88
"genericMappers": [
99
{
1010
"source": [
@@ -23,26 +23,26 @@
2323
"name": [
2424
{
2525
"code": "en-US",
26-
"content": "First Array"
26+
"content": "First List"
2727
}
2828
],
2929
"description": [
3030
{
3131
"code": "en-US",
32-
"content": "The first array to concatenate."
32+
"content": "The first list to concatenate."
3333
}
3434
],
3535
"documentation": [
3636
{
3737
"code": "en-US",
38-
"content": "The first input array whose elements will appear at the beginning of the resulting array."
38+
"content": "The first input list whose elements will appear at the beginning of the resulting list."
3939
}
4040
]
4141
},
4242
{
4343
"dataTypeIdentifier": {
4444
"genericType": {
45-
"dataTypeIdentifier": "ARRAY",
45+
"dataTypeIdentifier": "LIST",
4646
"genericMappers": [
4747
{
4848
"source": [
@@ -61,26 +61,26 @@
6161
"name": [
6262
{
6363
"code": "en-US",
64-
"content": "Second Array"
64+
"content": "Second List"
6565
}
6666
],
6767
"description": [
6868
{
6969
"code": "en-US",
70-
"content": "The second array to concatenate."
70+
"content": "The second list to concatenate."
7171
}
7272
],
7373
"documentation": [
7474
{
7575
"code": "en-US",
76-
"content": "The second input array whose elements will be appended after the elements of the first array."
76+
"content": "The second input list whose elements will be appended after the elements of the first list."
7777
}
7878
]
7979
}
8080
],
8181
"returnTypeIdentifier": {
8282
"genericType": {
83-
"dataTypeIdentifier": "ARRAY",
83+
"dataTypeIdentifier": "LIST",
8484
"genericMappers": [
8585
{
8686
"source": [
@@ -101,19 +101,19 @@
101101
"name": [
102102
{
103103
"code": "en-US",
104-
"content": "Concatenate Arrays"
104+
"content": "Concatenate Lists"
105105
}
106106
],
107107
"description": [
108108
{
109109
"code": "en-US",
110-
"content": "Concatenates two arrays into a single array."
110+
"content": "Concatenates two lists into a single list."
111111
}
112112
],
113113
"documentation": [
114114
{
115115
"code": "en-US",
116-
"content": "Returns a new array containing all elements of the first array followed by all elements of the second array."
116+
"content": "Returns a new list containing all elements of the first list followed by all elements of the second list."
117117
}
118118
],
119119
"alias": [

definitions/standard/runtime_definition/array/std_array_filter.proto.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"runtimeName": "std::array::filter",
2+
"runtimeName": "std::list::filter",
33
"runtimeParameterDefinitions": [
44
{
55
"dataTypeIdentifier": {
66
"genericType": {
7-
"dataTypeIdentifier": "ARRAY",
7+
"dataTypeIdentifier": "LIST",
88
"genericMappers": [
99
{
1010
"source": [
@@ -18,24 +18,24 @@
1818
]
1919
}
2020
},
21-
"runtimeName": "array",
21+
"runtimeName": "list",
2222
"defaultValue": null,
2323
"name": [
2424
{
2525
"code": "en-US",
26-
"content": "Input Array"
26+
"content": "Input List"
2727
}
2828
],
2929
"description": [
3030
{
3131
"code": "en-US",
32-
"content": "The array to be filtered."
32+
"content": "The list to be filtered."
3333
}
3434
],
3535
"documentation": [
3636
{
3737
"code": "en-US",
38-
"content": "The original array from which elements will be selected based on the predicate."
38+
"content": "The original list from which elements will be selected based on the predicate."
3939
}
4040
]
4141
},
@@ -73,14 +73,14 @@
7373
"documentation": [
7474
{
7575
"code": "en-US",
76-
"content": "A function that takes an element of the array and returns a boolean indicating whether the element should be included in the output array."
76+
"content": "A function that takes an element of the list and returns a boolean indicating whether the element should be included in the output list."
7777
}
7878
]
7979
}
8080
],
8181
"returnTypeIdentifier": {
8282
"genericType": {
83-
"dataTypeIdentifier": "ARRAY",
83+
"dataTypeIdentifier": "LIST",
8484
"genericMappers": [
8585
{
8686
"source": [
@@ -101,19 +101,19 @@
101101
"name": [
102102
{
103103
"code": "en-US",
104-
"content": "Filter Array"
104+
"content": "Filter List"
105105
}
106106
],
107107
"description": [
108108
{
109109
"code": "en-US",
110-
"content": "Filters elements of an array based on a predicate."
110+
"content": "Filters elements of an list based on a predicate."
111111
}
112112
],
113113
"documentation": [
114114
{
115115
"code": "en-US",
116-
"content": "Returns a new array containing only the elements from the input array for which the predicate returns true."
116+
"content": "Returns a new list containing only the elements from the input list for which the predicate returns true."
117117
}
118118
],
119119
"alias": [
@@ -125,7 +125,7 @@
125125
"displayMessage": [
126126
{
127127
"code": "en-US",
128-
"content": "Filter out elements in ${array} not matching ${predicate}"
128+
"content": "Filter out elements in ${list} not matching ${predicate}"
129129
}
130130
],
131131
"deprecationMessage": []

definitions/standard/runtime_definition/array/std_array_find.proto.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"runtimeName": "std::array::find",
2+
"runtimeName": "std::list::find",
33
"runtimeParameterDefinitions": [
44
{
55
"dataTypeIdentifier": {
66
"genericType": {
7-
"dataTypeIdentifier": "ARRAY",
7+
"dataTypeIdentifier": "LIST",
88
"genericMappers": [
99
{
1010
"source": [
@@ -18,24 +18,24 @@
1818
]
1919
}
2020
},
21-
"runtimeName": "array",
21+
"runtimeName": "list",
2222
"defaultValue": null,
2323
"name": [
2424
{
2525
"code": "en-US",
26-
"content": "Input Array"
26+
"content": "Input List"
2727
}
2828
],
2929
"description": [
3030
{
3131
"code": "en-US",
32-
"content": "The array to search through."
32+
"content": "The list to search through."
3333
}
3434
],
3535
"documentation": [
3636
{
3737
"code": "en-US",
38-
"content": "The array in which an element satisfying the predicate will be searched."
38+
"content": "The list in which an element satisfying the predicate will be searched."
3939
}
4040
]
4141
},
@@ -73,7 +73,7 @@
7373
"documentation": [
7474
{
7575
"code": "en-US",
76-
"content": "A function that takes an element of the array and returns a boolean indicating if the element matches the search criteria."
76+
"content": "A function that takes an element of the list and returns a boolean indicating if the element matches the search criteria."
7777
}
7878
]
7979
}
@@ -88,19 +88,19 @@
8888
"name": [
8989
{
9090
"code": "en-US",
91-
"content": "Find Element in Array"
91+
"content": "Find Element in List"
9292
}
9393
],
9494
"description": [
9595
{
9696
"code": "en-US",
97-
"content": "Finds the first element in the array that satisfies the predicate."
97+
"content": "Finds the first element in the list that satisfies the predicate."
9898
}
9999
],
100100
"documentation": [
101101
{
102102
"code": "en-US",
103-
"content": "Returns the first element from the input array for which the predicate returns true. If no element matches, returns null or equivalent."
103+
"content": "Returns the first element from the input list for which the predicate returns true. If no element matches, returns null or equivalent."
104104
}
105105
],
106106
"alias": [
@@ -112,7 +112,7 @@
112112
"displayMessage": [
113113
{
114114
"code": "en-US",
115-
"content": "Find first element in ${array} matching ${predicate}"
115+
"content": "Find first element in ${list} matching ${predicate}"
116116
}
117117
],
118118
"deprecationMessage": []

0 commit comments

Comments
 (0)