ll.IntegerToBase64

ll.IntegerToBase64 (Value: number) -> string

Returns a string that is a Base64 big endian encode of Value. Encodes the Value as an 8-character Base64 string.

Example

ll.IntegerToBase64(3.14)
Raw function spec json
{
  "def": "func",
  "desc": "Returns a string that is a Base64 big endian encode of Value.\nEncodes the Value as an 8-character Base64 string.",
  "energy": 10,
  "sleep": 0,
  "must_use": true,
  "link": "https://wiki.secondlife.com/wiki/LlIntegerToBase64",
  "private": false,
  "takesSelf": false,
  "name": "IntegerToBase64",
  "signatures": [
    {
      "def": "signature",
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Value",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "number"
            }
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll