Re: [PATCH 3/3] string_list: Remove string_list_insert_at_index from its API

2014-11-24 Thread Stefan Beller
On Mon, Nov 24, 2014 at 4:25 PM, Junio C Hamano wrote: > Stefan Beller writes: > >> This function behaves the same as string_list_insert, just the >> starting indexes for searching, where to insert into the list is also >> a parameter. So if you have knowledge on where to search for the string >>

Re: [PATCH 3/3] string_list: Remove string_list_insert_at_index from its API

2014-11-24 Thread Junio C Hamano
Stefan Beller writes: > This function behaves the same as string_list_insert, just the > starting indexes for searching, where to insert into the list is also > a parameter. So if you have knowledge on where to search for the string > to be inserted, you may have a speed up version of string_list

[PATCH 3/3] string_list: Remove string_list_insert_at_index from its API

2014-11-24 Thread Stefan Beller
This function behaves the same as string_list_insert, just the starting indexes for searching, where to insert into the list is also a parameter. So if you have knowledge on where to search for the string to be inserted, you may have a speed up version of string_list_insert. As we're not using thi