@andybaio func mapSet<T: Hashable>(_ transform: (Element) throws -> T) rethrows -> Set<T> {
return Set(try self.map(transform))
}
Top-level
@andybaio func mapSet<T: Hashable>(_ transform: (Element) throws -> T) rethrows -> Set<T> { No comments
|