[stdlib] _partition doesn't need to be public!

Thanks, Jordan

Swift SVN r20194
This commit is contained in:
Dave Abrahams
2014-07-19 00:38:48 +00:00
parent ec8b29cdf1
commit 6bbbf052a3

View File

@@ -104,7 +104,7 @@ public func partition<
return _partition(&elements, range, &less)
}
public func _partition<
func _partition<
C: MutableCollectionType where C.Index: RandomAccessIndexType
>(
inout elements: C,