Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: hash code for object ?

From: gregg:pointillistic at: 6-Jun-2007 9:44

Hi Arnaud, AG> Is there something like an hashcode for object in rebol as we have in AG> java ? Forgot to include an example of how to make hash! values. You either need to to MAKE, TO, or the serialized format:
>> make hash! [1 2 3 4 5]
== make hash! [1 2 3 4 5]
>> to hash! [1 2 3 4 5]
== make hash! [1 2 3 4 5] There is also a list! type. Both hash! and list! are covered in the Core manual in more detail as well. -- Gregg