Bit.tohex

From GiderosMobile
Revision as of 11:02, 23 August 2018 by Hgy29 (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2013.09<br/> === Description === Converts its first argument to a hex string. The number of hex digits is given by the absolute value...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2013.09

Description

Converts its first argument to a hex string. The number of hex digits is given by the absolute value of the optional second argument. Positive numbers between 1 and 8 generate lowercase hex digits. Negative numbers generate uppercase hex digits. Only the least-significant 4*|n| bits are used. The default is to generate 8 lowercase hex digits.

(string), = bit.tohex(xn,)

'x: (number) number to convert to hex string '
n: (number) number of hex digits to convert optional
Returns (string) hex string