Skip to content

Commit 0157ec6

Browse files
committed
ref: renamed function
1 parent c2f076d commit 0157ec6

2 files changed

Lines changed: 72 additions & 72 deletions

File tree

definitions/standard/runtime_functions/text/std_text_start_with.proto.json

Lines changed: 0 additions & 72 deletions
This file was deleted.
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"runtimeName": "std::text::starts_with",
3+
"runtimeParameterDefinitions": [
4+
{
5+
"runtimeName": "value",
6+
"defaultValue": null,
7+
"name": [
8+
{
9+
"code": "en-US",
10+
"content": "Text"
11+
}
12+
],
13+
"description": [
14+
{
15+
"code": "en-US",
16+
"content": "The input text to check."
17+
}
18+
],
19+
"documentation": []
20+
},
21+
{
22+
"runtimeName": "prefix",
23+
"defaultValue": null,
24+
"name": [
25+
{
26+
"code": "en-US",
27+
"content": "Prefix"
28+
}
29+
],
30+
"description": [
31+
{
32+
"code": "en-US",
33+
"content": "The prefix to test against the input text."
34+
}
35+
],
36+
"documentation": []
37+
}
38+
],
39+
"throwsError": false,
40+
"name": [
41+
{
42+
"code": "en-US",
43+
"content": "Starts With"
44+
}
45+
],
46+
"description": [
47+
{
48+
"code": "en-US",
49+
"content": "Returns true if the input text begins with the given prefix. Otherwise, returns false."
50+
}
51+
],
52+
"documentation": [],
53+
"alias": [
54+
{
55+
"code": "en-US",
56+
"content": "text;string;std;start;with;starts"
57+
}
58+
],
59+
"displayMessage": [
60+
{
61+
"code": "en-US",
62+
"content": "Check if ${value} starts with ${prefix}"
63+
}
64+
],
65+
"deprecationMessage": [],
66+
"displayIcon": "tabler:abc",
67+
"signature": "(value: TEXT, prefix: TEXT): BOOLEAN",
68+
"linkedDataTypeIdentifiers": [
69+
"TEXT",
70+
"BOOLEAN"
71+
]
72+
}

0 commit comments

Comments
 (0)