24 lines
353 B
Swift
24 lines
353 B
Swift
//
|
|
// Realm.swift
|
|
// AutoCatCore
|
|
//
|
|
// Created by Selim Mustafaev on 21.02.2023.
|
|
// Copyright © 2023 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
import RealmSwift
|
|
|
|
extension Results {
|
|
|
|
public func toArray() -> [Element] {
|
|
Array(self)
|
|
}
|
|
}
|
|
|
|
extension List {
|
|
|
|
public func toArray() -> [Element] {
|
|
Array(self)
|
|
}
|
|
}
|