You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
typedef struct raxNode {
uint32_t iskey:1; /* Does this node contain a key? */
uint32_t isnull:1; /* Associated value is NULL (don't store it). */
uint32_t iscompr:1; /* Node is compressed. */
uint32_t size:29; /* Number of children, or compressed string len. */
e.g. iskey only have 1 or 0 here, right ?
The text was updated successfully, but these errors were encountered:
e.g.
iskey
only have 1 or 0 here, right ?The text was updated successfully, but these errors were encountered: