Skip to content

Commit bc08aa4

Browse files
committed
feat: added return function
1 parent f9b3a6d commit bc08aa4

File tree

2 files changed

+66
-0
lines changed

2 files changed

+66
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# 05.08.2025
2+
3+
## Added
4+
- return
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
## return
2+
Will return the given value.
3+
4+
```json
5+
{
6+
"runtime_name": "std::control::return",
7+
"runtime_parameter_definitions": [
8+
{
9+
"data_type_identifier": {
10+
"type": {
11+
"GenericKey": "T"
12+
}
13+
},
14+
"runtime_name": "value",
15+
"name": [
16+
{
17+
"code": "en-US",
18+
"content": "Return Value"
19+
}
20+
],
21+
"description": [
22+
{
23+
"code": "en-US",
24+
"content": "The value to be returned."
25+
}
26+
],
27+
"documentation": [
28+
{
29+
"code": "en-US",
30+
"content": "This value will be returned to the upper context."
31+
}
32+
]
33+
}
34+
],
35+
"return_type_identifier": {
36+
"type": {
37+
"GenericKey": "T"
38+
}
39+
},
40+
"name": [
41+
{
42+
"code": "en-US",
43+
"content": "Return"
44+
}
45+
],
46+
"description": [
47+
{
48+
"code": "en-US",
49+
"content": "Returns the specified value to the upper context."
50+
}
51+
],
52+
"documentation": [
53+
{
54+
"code": "en-US",
55+
"content": "Returns the specified value to the upper context."
56+
}
57+
],
58+
"generic_keys": ["R"],
59+
"deprecation_message": [],
60+
"throws_error": false
61+
}
62+
```

0 commit comments

Comments
 (0)