Re: [go-nuts] Concatenate iterators

2024-08-30 Thread costin
Thanks! That looks like a useful package. On Friday, August 30, 2024 at 6:37:01 PM UTC+1 Ian Lance Taylor wrote: > On Fri, Aug 30, 2024 at 10:33 AM costin wrote: > > > > Is there a way to concatenate 2 iterators (other than writing my own > function)? There isn't any std function I could find.

Re: [go-nuts] Concatenate iterators

2024-08-30 Thread Ian Lance Taylor
On Fri, Aug 30, 2024 at 10:33 AM costin wrote: > > Is there a way to concatenate 2 iterators (other than writing my own > function)? There isn't any std function I could find. Would such a function > belong in the iter package (slices seems like the wrong place)? It would probably start out in

[go-nuts] Concatenate iterators

2024-08-30 Thread costin
Is there a way to concatenate 2 iterators (other than writing my own function)? There isn't any std function I could find. Would such a function belong in the iter package (slices seems like the wrong place)? -- You received this message because you are subscribed to the Google Groups "golang-