Skip to content

Instantly share code, notes, and snippets.

View dudarenko-io's full-sized avatar

Ilya Dudarenko dudarenko-io

View GitHub Profile
@dudarenko-io
dudarenko-io / ArrayFlatMap.swift
Last active June 29, 2017 14:50
Swift array flatMap example used to cast array`s content
class Person: CustomStringConvertible {
let name: String
var residence: String?
init(name: String,residence: String) {
self.name = name
self.residence = residence
}
var description: String {