the instance to insert the key value into
pointer to the key
length of the key
pointer to the string
length of the string
ErrorCode
HiBONT h; int rt = tagion_hibon_create(&h); assert(rt == ErrorCode.none, "could not create hibon"); string key = "some_key"; string value = "some_value"; rt = tagion_hibon_add_string(&h, &key[0], key.length, &value[0], value.length); HiBON string_hibon = cast(HiBON) h.hibon; assert(string_hibon[key].get!string == value);
Insert string into hibon