Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"runtimeName": "std::text::starts_with",
"runtimeParameterDefinitions": [
{
"runtimeName": "value",
"defaultValue": null,
"name": [
{
"code": "en-US",
"content": "Text"
}
],
"description": [
{
"code": "en-US",
"content": "The input text to check."
}
],
"documentation": []
},
{
"runtimeName": "prefix",
"defaultValue": null,
"name": [
{
"code": "en-US",
"content": "Prefix"
}
],
"description": [
{
"code": "en-US",
"content": "The prefix to test against the input text."
}
],
"documentation": []
}
],
"throwsError": false,
"name": [
{
"code": "en-US",
"content": "Starts With"
}
],
"description": [
{
"code": "en-US",
"content": "Returns true if the input text begins with the given prefix. Otherwise, returns false."
}
],
"documentation": [],
"alias": [
{
"code": "en-US",
"content": "text;string;std;start;with;starts"
Comment thread
raphael-goetz marked this conversation as resolved.
}
],
"displayMessage": [
{
"code": "en-US",
"content": "Check if ${value} starts with ${prefix}"
}
],
"deprecationMessage": [],
"displayIcon": "tabler:abc",
"signature": "(value: TEXT, prefix: TEXT): BOOLEAN",
"linkedDataTypeIdentifiers": [
"TEXT",
"BOOLEAN"
]
Comment thread
raphael-goetz marked this conversation as resolved.
}