Rev 1010 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1010 | Rev 1011 | ||
|---|---|---|---|
| Line 2... | Line 2... | ||
| 2 | This file is intended to document what functions and objects are available to our javascript environment. |
2 | This file is intended to document what functions and objects are available to our javascript environment. |
| 3 | 3 | ||
| 4 | THIS IS NOT COMPLETE |
4 | THIS IS NOT COMPLETE |
| 5 | 5 | ||
| 6 | string uint2hex(number uintValue, number numberOfBits) |
6 | string uint2hex(number uintValue, number numberOfBits) |
| 7 | string hex2bin(string |
7 | string hex2bin(string hexString) |
| 8 | string bin2hex(string binString) |
8 | string bin2hex(string binString) |
| 9 | number bin2float(string binString) |
9 | number bin2float(string binString) |
| 10 | string float2bin(number floatValue, number numberOfBits) |
10 | string float2bin(number floatValue, number numberOfBits) |
| 11 | number bin2uint(string binString) |
11 | number bin2uint(string binString) |
| 12 | string uint2bin(number uintValue, number numberOfBits) |
12 | string uint2bin(number uintValue, number numberOfBits) |
| - | 13 | number hex2uint(string hexString) |
|