I hereby claim:
- I am sunshinejr on github.
- I am sunshinejr (https://keybase.io/sunshinejr) on keybase.
- I have a public key ASC_9nKhKZwMWK4Ciutsh00FNk74FjRLf90QhujodtkmkQo
To claim this, I am signing this object:
import Foundation | |
import class UIKit.UIImage | |
struct AttributedString: ExpressibleByStringInterpolation { | |
enum Attribute: Hashable { | |
enum ImportanceLevel: String, Equatable { | |
case very | |
case enough | |
} | |
case important(ImportanceLevel = .enough) |
@propertyWrapper | |
public final class Debounced<T: Hashable>: BindingConvertible { | |
public let delay: Double | |
private var _value: T | |
private var timer: Timer? = nil | |
public var wrappedValue: T { | |
get { | |
return _value |
I hereby claim:
To claim this, I am signing this object:
import Foundation | |
public let Defaults = UserDefaults.standard | |
open class DefaultsKeys { | |
fileprivate init() {} | |
} | |
open class DefaultsKey<ValueType>: DefaultsKeys { | |
public let _key: String |
// swift-tools-version:4.0 | |
import PackageDescription | |
let package = Package( | |
name: "Harvey", | |
products: [ | |
.library( | |
name: "Harvey", | |
targets: ["Harvey"]), | |
], |
// swift-tools-version:4.0 |
struct LazyType { | |
// Normal usage | |
lazy var soomethingLazy: String = { | |
return "Test lazy instance method" | |
}() | |
// Lazy in statics | |
static var somethingLazy: String = { | |
return "Test lazy static method" |
struct LazyType { | |
lazy var soomethingLazy: String = { | |
return "Test lazy instance method" | |
}() | |
} |