ll.Log

ll.Log (Value: number) -> number

Returns the natural logarithm of Value. Returns zero if Value <= 0. Returns the base e (natural) logarithm of the specified Value.

Example

ll.Log(3.14)
Raw function spec json
{
  "def": "func",
  "desc": "Returns the natural logarithm of Value. Returns zero if Value <= 0.\nReturns the base e (natural) logarithm of the specified Value.",
  "energy": 10,
  "sleep": 0,
  "must_use": true,
  "link": "https://wiki.secondlife.com/wiki/LlLog",
  "private": false,
  "takesSelf": false,
  "name": "Log",
  "signatures": [
    {
      "def": "signature",
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            {
              "def": "simple",
              "value": "number"
            }
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Value",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "number"
            }
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll