Skip to content

Instantly share code, notes, and snippets.

@ohetzendorfer
Last active June 21, 2022 11:26
Show Gist options
  • Save ohetzendorfer/760900828066156e4c94f0423b4aa6b8 to your computer and use it in GitHub Desktop.
Save ohetzendorfer/760900828066156e4c94f0423b4aa6b8 to your computer and use it in GitHub Desktop.
Realm results extension for transforming to array
import RealmSwift
extension Results {
func toArray() -> [T] {
return self.map{ $0 }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment