stdlib: protocol extensions: de-underscore filter()

The API was adjusted according to the API review previously.

Swift SVN r28592
This commit is contained in:
Dmitri Hrybenko
2015-05-15 00:37:01 +00:00
parent 7c8a394cb1
commit 25d9a4fe32
8 changed files with 21 additions and 126 deletions

View File

@@ -180,7 +180,7 @@ ArrayTestSuite.test("${array_type}/filter") {
expectUnreachable()
return true
}
expectType(${array_type}<Int>.self, &result)
expectType(Array<Int>.self, &result)
expectEqual([], result)
expectEqual(0, result.capacity)
}