Source
114
114
H5RC_t * (*get_shared)(const H5F_t*, const void*); /*shared info for node */
115
115
herr_t (*new_node)(H5F_t*, hid_t, H5B_ins_t, void*, void*, void*, haddr_t*);
116
116
int (*cmp2)(void*, void*, void*); /*compare 2 keys */
117
117
int (*cmp3)(void*, void*, void*); /*compare 3 keys */
118
118
htri_t (*found)(H5F_t*, hid_t, haddr_t, const void*, void*);
119
119
120
120
/* insert new data */
121
121
H5B_ins_t (*insert)(H5F_t*, hid_t, haddr_t, void*, hbool_t*, void*, void*,
122
122
void*, hbool_t*, haddr_t*);
123
123
124
-
/* min insert uses min leaf, not new(), similarily for max insert */
124
+
/* min insert uses min leaf, not new(), similarly for max insert */
125
125
hbool_t follow_min;
126
126
hbool_t follow_max;
127
127
128
128
/* The direction of the key that is intrinsically associated with each node */
129
129
H5B_dir_t critical_key;
130
130
131
131
/* remove existing data */
132
132
H5B_ins_t (*remove)(H5F_t*, hid_t, haddr_t, void*, hbool_t*, void*, void*,
133
133
hbool_t*);
134
134