[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Object hashing & printing



    Date: Mon, 2 Apr 84 23:55:57 EST
    From: Jonathan Young <Young>

        Just for consistency's sake, what *is* the rule for printing
    the object hash value - second, or last?  For example:
        #{Operation 384 NODE}  but
        #{Structure ENV 379}

The rule is:

    #{ <type info>    <hash number>   <instance identification> }
                                    
which for these cases is

    #{ Operation      384             NODE }
    #{ Structure ENV  379             <none> }

Perhaps there should be parentheses around the "Structure ENV":

    #{(Structure ENV) 379}