Is there an efficient method to remove elements with multiple (compile-time-unknown) indices from an array? I currently do something like

                if (!index.empty)
                        foreach (i; index.sort.reverse)
                                a = a.remove(i);

... which looks a bit awkward.

Reply via email to