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
{
  "id": "fn-math-log1p",
  "dataComponent": "math",
  "heading": {
    "title": "log1p",
    "badges": ["Math", "JSMath"]
  },
  "synopsis": "Computes ln(1+x) more accurately for small x than log(1+x). One numeric argument > -1.",
  "codeBlocks": [
    "extend(\"math\")\\n\\nsput( math:log1p(0) )\\n# => 0\\n\\nsput( math:log1p(0.1) )\\n# => ~0.0953101798\\n"
  ],
  "notes": [
    "Accepts a single numeric argument > -1. This function is typically more precise than log(1+x) for small x."
  ]
}