This file contains 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
enum elseer<T> { | |
case `true`(T) | |
case `false` | |
func `else` (falseClosure: ()->(T)) -> T { | |
switch self { | |
case .true(let result): | |
return result | |
case .false: |
This file contains 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 SwiftUI | |
struct User: Identifiable { | |
var id: Int | |
init(id: Int) { | |
self.id = id | |
} | |
} |
This file contains 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 SwiftUI | |
struct MyNumber: View { | |
private let value: Int | |
init() { | |
print(#function, #line) | |
value = 1000 | |
} |
This file contains 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 | |
import SwiftUI | |
class MyPublisher<T, E>: Publisher where E: Error { | |
func receive<S>(subscriber: S) where S : Subscriber, Failure == S.Failure, Output == S.Input { | |
inner.receive(subscriber: subscriber) | |
Swift.print(#function, #line) | |
} | |
typealias Output = T |
This file contains 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 UIKit | |
class ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
// Do any additional setup after loading the view. | |
view.backgroundColor = .white | |
} |
This file contains 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 UIKit | |
class ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
// Do any additional setup after loading the view. | |
view.backgroundColor = .white | |
} |
This file contains 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 | |
import SwiftUI | |
struct IndexedCollection<Base: RandomAccessCollection>: RandomAccessCollection { | |
typealias Index = Base.Index | |
typealias Element = (index: Index, element: Base.Element) | |
let base: Base | |
var startIndex: Index { base.startIndex } |
This file contains 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 Foundation | |
protocol _View { | |
static var specialType: Any.Type { get } | |
} | |
protocol View: _View { | |
associatedtype Body: View | |
associatedtype Special | |
var body: Body { get } |
This file contains 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 RxSwift | |
import RxCocoa | |
import UIKit | |
extension SharedSequence { | |
func assertStartWithEvent(file: StaticString = #file, line: UInt = #line) -> Self { | |
let deadline = Observable<Element>.create { observer -> Disposable in | |
fatalError("Event didn't come immediately after subscribe.", file: file, line: line) | |
} | |
.delaySubscription(.nanoseconds(0), scheduler: SharingStrategy.scheduler) |
This file contains 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
use std::marker::PhantomData; | |
struct T<A> { | |
_phantom: PhantomData<A>, | |
} | |
impl<U> T<&[U]> { | |
fn f(_: &[U]) { | |
println!("f(_: &[U])") | |
} |
OlderNewer