forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
To hex
angerangel edited this page Mar 19, 2013
·
1 revision
TO-HEX value /size len
Converts numeric value to a hex issue! datatype (with leading # and 0's).
TO-HEX is a native value.
- value -- Value to be converted (integer! tuple!)
-
/size -- Specify number of hex digits in result
- len (integer!)
#SOURCE
to-hex: make native! [ [
{Converts numeric value to a hex issue! datatype (with leading # and 0's).}
value [integer! tuple!] "Value to be converted"
/size "Specify number of hex digits in result"
len [integer!]
] ]