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
{
  "id": "fn-array-uniq",
  "dataComponent": "array",
  "heading": {
    "title": "uniq",
    "badges": ["Array"]
  },
  "synopsis": "Removes duplicate elements from an array, keeping first occurrence.",
  "codeBlocks": [
    "extend(\"array\")\n\nsput( array:uniq([1,2,2,3,1]) )\n# => [1,2,3]"
  ],
  "notes": [
    "Accepts int[], float[], bool[], or str[].",
    "Order of first occurrence preserved."
  ]
}