Skip to content

Instantly share code, notes, and snippets.

@vitsky91
Forked from ohetzendorfer/ResultsExtension.swift
Created June 21, 2022 11:26
Show Gist options
  • Save vitsky91/171de5de64c0ab9dfd56d4d90b5626c7 to your computer and use it in GitHub Desktop.
Save vitsky91/171de5de64c0ab9dfd56d4d90b5626c7 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