{
"id": "fn-string-repeat",
"dataComponent": "string",
"heading": {
"title": "repeat",
"badges": ["String", "PARTIAL"]
},
"synopsis": "Repeats a string a specified number of times. Partial/placeholder usage supported.",
"codeBlocks": [
"extend(\"string\")\n\nsput( string:repeat(\"ha\", 3) )\n# => \"hahaha\""
],
"notes": [
"Arguments: string, count (integer, 0..8192).",
"Partial and _ supported.",
"Returns error if count is out of range."
]
}