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 | |
@_functionBuilder | |
struct FlatMapBuilder { | |
static func buildBlock<C: Publisher>(_ component: C) -> C | |
{ | |
component | |
} | |
static func buildEither<F: Publisher, S: Publisher>(first component: F) -> EitherPublisher<F, S> |
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
サーバ日付 | id | value | ||
---|---|---|---|---|
2021/03/24 11:03:04 | testing4 | 0 | ||
2021/03/24 11:03:04 | testing1 | 0 | ||
2021/03/24 11:04:07 | testing4 | 1 | ||
2021/03/24 11:04:07 | testing1 | 1 | ||
2021/03/24 11:04:08 | testing2 | 1 | ||
2021/03/24 11:05:11 | testing1 | 2 | 私物iPadでスケジュール中。電源に接続されたりされてなかったり、他のアプリを起動してたりしてなかったりする | |
2021/03/24 11:05:11 | testing4 | 2 | ||
2021/03/24 11:05:12 | testing2 | 2 | ||
2021/03/24 11:05:13 | testing3 | 2 | 〜ここでバックグラウンドにした〜 |
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 | |
public struct Airport: Codable { | |
let name: String | |
let iata: String | |
let icao: String | |
let coordinates: [Double] | |
public struct Runway: Codable { | |
enum Surface: String, Codable { |
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 DiffableDataSources | |
import UIKit | |
class CollectionViewConcatDataSource<SectionIdentifierType: Hashable>: NSObject, UICollectionViewDataSource { | |
typealias ItemIdentifierType = AnyHashable | |
public typealias SupplementaryViewProvider = (UICollectionView, String, IndexPath) -> UICollectionReusableView? | |
private var innerDataSource: CollectionViewDiffableDataSource<SectionIdentifierType, AnyHashable>! | |
private var adapterMap: [SectionIdentifierType: DiffableDataSourceSectionAdapterType] = [:] | |
var defaultSupplementaryViewProvider: SupplementaryViewProvider? = nil |
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
class A { | |
class var className: String { "A" } | |
init() {} | |
func setup() { | |
name = { | |
return Self.className | |
} | |
} | |
var name: (() -> String)? | |
} |
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
extension ObservableType where Element == Void { | |
func pagenation< | |
Token, | |
Source: ObservableConvertibleType, | |
PagingElement | |
>( | |
startWith token: Token, | |
selector: @escaping (Token) throws -> Source | |
) -> Observable<(usedToken: Token, PagingElement)> | |
where |
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 Darwin.POSIX.iconv | |
class Iconv { | |
enum Error: Swift.Error { | |
case illegalByteSequence | |
case invalidArgument | |
case invalidResult | |
case unknownError(errno: Int32) | |
} |
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])") | |
} |
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
import Foundation | |
protocol _View { | |
static var specialType: Any.Type { get } | |
} | |
protocol View: _View { | |
associatedtype Body: View | |
associatedtype Special | |
var body: Body { get } |