The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#ifndef SPVM_HASH_ENTRY_H
#define SPVM_HASH_ENTRY_H

#include "spvm_base.h"

// Hash entry
struct SPVM_hash_entry {
  void* value;
  int32_t next_index;
  int32_t key_index;
};

#endif