Add (unused) hb_array_t<>

This commit is contained in:
Behdad Esfahbod 2018-09-11 01:07:06 +02:00
parent bccf3e1827
commit 13a8786c7c
1 changed files with 20 additions and 0 deletions

View File

@ -29,6 +29,8 @@
#include "hb.hh"
#include "hb-null.hh"
/* Void! For when we need a expression-type of void. */
typedef const struct _hb_void_t *hb_void_t;
@ -507,6 +509,24 @@ struct hb_auto_t : Type
void fini (void) {}
};
template <typename T>
struct hb_array_t
{
inline hb_array_t (void) : arrayZ (nullptr), len (0) {}
inline hb_array_t (const T *array_, unsigned int len_) : arrayZ (array_), len (len_) {}
inline const T& operator [] (unsigned int i) const
{
if (unlikely (i >= len)) return Null(T);
return arrayZ[i];
}
inline void free (void) { ::free ((void *) arrayZ); arrayZ = nullptr; len = 0; }
const T *arrayZ;
unsigned int len;
};
struct hb_bytes_t
{
inline hb_bytes_t (void) : bytes (nullptr), len (0) {}