This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // Transformable.swift | |
| // Transformable | |
| // | |
| // Created by Roshan Nindrai on 10/15/18. | |
| // Copyright © 2018 Roshan Nindrai. All rights reserved. | |
| // | |
| import Foundation | |
| import CoreData |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //: A UIKit based Playground for presenting user interface | |
| import UIKit | |
| import PlaygroundSupport | |
| public struct Renderable { | |
| private let handle: () -> Void | |
| public init(_ handle: @escaping () -> Void) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Combine | |
| public extension Publishers { | |
| final class Pulse<Upstream: Publisher>: Publisher { | |
| public typealias Output = Upstream.Output | |
| public typealias Failure = Upstream.Failure | |
| private let interval: Int | |
| private let upstream: Upstream |
OlderNewer