You can create your own generic List struct using one of the existing code generators like:
https://github.com/cheekybits/genny https://github.com/taylorchu/generic https://github.com/joeshaw/gengen https://github.com/clipperhouse/gen https://github.com/ncw/gotemplate https://github.com/droundy/gotgo and add your own find function to it. Am Montag, 7. August 2017 16:23:57 UTC+2 schrieb marti...@programmfabrik.de: > > Being fairly new to Go, I am trying to evaluate if it s possible and worth > to move our huge C++ codebase over to Go. > > 1) append(sliceA, my_new_item) sliceA > > Why can I not append something to a Slice in place, why does it have to > return a new Slice? > > 2) find(sliceB, item_i_look_for) int, -1 for not found > > Why can I not find easily search for an item inside a Slice. Every other > language I know has this. And I need this in a generic form. > > Or am I missing something entirely here? > > Best > Martin > > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.