Skip to content

Commit 39814f9

Browse files
committed
feat: improved all runtime function definition translations
1 parent ec0088a commit 39814f9

109 files changed

Lines changed: 7847 additions & 9227 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 89 additions & 104 deletions
Original file line numberDiff line numberDiff line change
@@ -1,106 +1,91 @@
11
{
2-
"runtimeName": "std::list::at",
3-
"runtimeParameterDefinitions": [
4-
{
5-
"dataTypeIdentifier": {
6-
"genericType": {
7-
"dataTypeIdentifier": "LIST",
8-
"genericMappers": [
9-
{
10-
"source": [
11-
{
12-
"genericKey": "R"
13-
}
14-
],
15-
"target": "T",
16-
"genericCombinations": []
17-
}
18-
]
19-
}
20-
},
21-
"runtimeName": "list",
22-
"defaultValue": null,
23-
"name": [
24-
{
25-
"code": "en-US",
26-
"content": "Input List"
27-
}
28-
],
29-
"description": [
30-
{
31-
"code": "en-US",
32-
"content": "The list from which to retrieve an element."
33-
}
34-
],
35-
"documentation": [
36-
{
37-
"code": "en-US",
38-
"content": "A list containing elements of any type. The element at the specified index will be returned."
39-
}
40-
]
41-
},
42-
{
43-
"dataTypeIdentifier": {
44-
"dataTypeIdentifier": "NUMBER"
45-
},
46-
"runtimeName": "index",
47-
"defaultValue": null,
48-
"name": [
49-
{
50-
"code": "en-US",
51-
"content": "Index"
52-
}
53-
],
54-
"description": [
55-
{
56-
"code": "en-US",
57-
"content": "The zero-based index of the element to retrieve."
58-
}
59-
],
60-
"documentation": [
61-
{
62-
"code": "en-US",
63-
"content": "Specifies the position of the element in the list to return. Must be within the bounds of the list."
64-
}
65-
]
66-
}
67-
],
68-
"returnTypeIdentifier": {
69-
"genericKey": "R"
70-
},
71-
"throwsError": false,
72-
"genericKeys": [
73-
"R"
74-
],
75-
"name": [
76-
{
77-
"code": "en-US",
78-
"content": "Get List Element"
79-
}
80-
],
81-
"description": [
82-
{
83-
"code": "en-US",
84-
"content": "Retrieves the element at a specified index from a list."
85-
}
86-
],
87-
"documentation": [
88-
{
89-
"code": "en-US",
90-
"content": "Returns the element located at the given zero-based index within the input list."
91-
}
92-
],
93-
"alias": [
94-
{
95-
"code": "en-US",
96-
"content": "at;array;list;collection;std"
97-
}
98-
],
99-
"displayMessage": [
100-
{
101-
"code": "en-US",
102-
"content": "Get element at ${index} of ${list}"
103-
}
104-
],
105-
"deprecationMessage": []
2+
"runtimeName": "std::list::at",
3+
"runtimeParameterDefinitions": [
4+
{
5+
"dataTypeIdentifier": {
6+
"genericType": {
7+
"dataTypeIdentifier": "LIST",
8+
"genericMappers": [
9+
{
10+
"source": [
11+
{
12+
"genericKey": "R"
13+
}
14+
],
15+
"target": "T",
16+
"genericCombinations": []
17+
}
18+
]
19+
}
20+
},
21+
"runtimeName": "list",
22+
"defaultValue": null,
23+
"name": [
24+
{
25+
"code": "en-US",
26+
"content": "Input List"
27+
}
28+
],
29+
"description": [
30+
{
31+
"code": "en-US",
32+
"content": "The list from which to retrieve an element."
33+
}
34+
],
35+
"documentation": []
36+
},
37+
{
38+
"dataTypeIdentifier": {
39+
"dataTypeIdentifier": "NUMBER"
40+
},
41+
"runtimeName": "index",
42+
"defaultValue": null,
43+
"name": [
44+
{
45+
"code": "en-US",
46+
"content": "Index"
47+
}
48+
],
49+
"description": [
50+
{
51+
"code": "en-US",
52+
"content": "The zero-based index of the element to retrieve."
53+
}
54+
],
55+
"documentation": []
56+
}
57+
],
58+
"returnTypeIdentifier": {
59+
"genericKey": "R"
60+
},
61+
"throwsError": true,
62+
"genericKeys": [
63+
"R"
64+
],
65+
"name": [
66+
{
67+
"code": "en-US",
68+
"content": "Get Element of List"
69+
}
70+
],
71+
"description": [
72+
{
73+
"code": "en-US",
74+
"content": "Retrieves the element at a specified index from a list."
75+
}
76+
],
77+
"documentation": [],
78+
"alias": [
79+
{
80+
"code": "en-US",
81+
"content": "at;array;list;collection;std;index"
82+
}
83+
],
84+
"displayMessage": [
85+
{
86+
"code": "en-US",
87+
"content": "Get element at ${index} of ${list}"
88+
}
89+
],
90+
"deprecationMessage": []
10691
}

0 commit comments

Comments
 (0)