Re: ltable implementation
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: ltable implementation
- From: "CHU Run-min" <churunmin@...>
- Date: 2008年6月19日 21:14:18 +0800
typedef union TKey {
struct {
TValuefields;
struct Node *next; /* for chaining */
} nk;
TValue tvk;
} TKey;
I found this is a union just now.
I got it! Thank you very much!