BaseN

From Second Life Wiki
Revision as of 06:40, 2 August 2010 by Nexii Malthus (talk | contribs) (Created page with '{{LSL Header}} __Toc__ This script allows you to make maximum use of available bits in strings for transport or storage in memory. By being able to code integers into the usable...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This script allows you to make maximum use of available bits in strings for transport or storage in memory. By being able to code integers into the usable space of UTF-8 and UTF-16.

Note that this script does not code to the same standards such as Base64, but instead maps dynamically to the usable code points as allowed by Linden Lab.

Header

<lsl> /*/

       Variable Base
   created by Nexii
   unless otherwise noted

/*/ </lsl>


Main Functions


Required Helper Functions

(( 0x00003f00 &  end) >> 2   ) 


Test Script