Remove MutableSliceable

This commit is contained in:
Dmitri Gribenko
2015-11-04 17:22:42 -08:00
committed by Max Moiseev
parent d610fa0d1c
commit 78930e7fac
3 changed files with 1 additions and 12 deletions

View File

@@ -43,7 +43,7 @@ Algorithm.test("sorted/strings")
// A wrapper around Array<T> that disables any type-specific algorithm
// optimizations and forces bounds checking on.
struct A<T> : MutableSliceable {
struct A<T> : MutableCollection {
init(_ a: Array<T>) {
impl = a
}