mumu 0.10.0

Lava Mumu is a language for those in the now and that know
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "id": "fn-string-last_index_of",
  "dataComponent": "string",
  "heading": {
    "title": "last_index_of",
    "badges": ["String", "PARTIAL"]
  },
  "synopsis": "Returns the character index of the last occurrence of a substring, or -1 if not found. Partial/placeholder usage supported.",
  "codeBlocks": [
    "extend(\"string\")\n\nsput( string:last_index_of(\"l\", \"Hello, lol!\") )\n# => 9"
  ],
  "notes": [
    "Arguments: substring, string.",
    "Index is counted in Unicode characters.",
    "Partial and _ supported."
  ]
}