Skip to content
View jstfun's full-sized avatar
πŸ‘
OpenToRemoteWork
πŸ‘
OpenToRemoteWork
  • United States
Block or Report

Block or report jstfun

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. UserDefaultsWrapper using property w... UserDefaultsWrapper using property wrapper
    1
    @propertyWrapper
    2
    struct Storage<T: Codable> {
    3
        private let key: String
    4
        private let defaultValue: T
    5
    
                  
  2. Implementing Copy-on_Write behavior ... Implementing Copy-on_Write behavior for your custom value types
    1
    final class Ref<T> {
    2
      var val : T
    3
      init(_ v : T) {val = v}
    4
    }
    5