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-math-acosh",
  "dataComponent": "math",
  "heading": {
    "title": "acosh",
    "badges": ["Math", "JSMath"]
  },
  "synopsis": "Computes the inverse hyperbolic cosine of a numeric argument ≥ 1.",
  "codeBlocks": [
    "extend(\"math\")\\n\\nsput( math:acosh(1) )\\n# => 0\\n\\nsput( math:acosh(10) )\\n# => ~2.99822295029797\\n"
  ],
  "notes": [
    "Accepts exactly 1 argument >= 1. If you pass a smaller number, it may raise an error or return NaN (depending on bridging).",
    "Returns a float representing acosh(value)."
  ]
}