yes, you are right, but i missed out code in-between, i thought to keep it 
simple!!

actually its this;

func (x Uint64) String() string{
    b:=make([]byte,8,8)
    n,_:=x.Write(b)
    return fmt.Sprintf("% X",b[:n])
}

the call to its own io.Writer implementation might look odd, in isolation, 
and i was sure that that wasn't the issue.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to