On Fri, Apr 20, 2018 at 8:26 PM, Kaveh Shahbazian <[email protected]> wrote: > > Is it safe to access slices that shares a back array concurrently? (Assuming > the length of slices will not change)
It's safe to read from them concurrently. It's not in general safe to modify them concurrently. Ian -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
