|   1079  * @return the number of elements that could be successfully inserted | 
  1079  * @return the number of elements that could be successfully inserted | 
|   1080  */ | 
  1080  */ | 
|   1081 cx_attr_nonnull | 
  1081 cx_attr_nonnull | 
|   1082 static inline size_t cxTreeInsertIter( | 
  1082 static inline size_t cxTreeInsertIter( | 
|   1083         CxTree *tree, | 
  1083         CxTree *tree, | 
|   1084         struct cx_iterator_base_s *iter, | 
  1084         CxIteratorBase *iter, | 
|   1085         size_t n | 
  1085         size_t n | 
|   1086 ) { | 
  1086 ) { | 
|   1087     return tree->cl->insert_many(tree, iter, n); | 
  1087     return tree->cl->insert_many(tree, iter, n); | 
|   1088 } | 
  1088 } | 
|   1089  | 
  1089  |