8000 GitHub - ReactorKit/WeakMapTable: A weak-to-strong map table
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ReactorKit/WeakMapTable

Repository files navigation

WeakMapTable

Swift CocoaPods Build Status CodeCov

A weak-to-strong map table. It is inspired by NSMapTable but guarantees thread safety and deals better with weak references. NSMapTable.weakToStrongObjects() doesn't free the value object when the key object is deallocated but WeakMapTable does.

APIs

public func value(forKey key: Key) -> Value?
public func value(forKey key: Key, default: @autoclosure () -> Value) -> Value
public func forceCastedValue<T>(forKey key: Key, default: @autoclosure () -> T) -> T
public func setValue(_ value: Value?, forKey key: Key)

Installation

Podfile

pod 'WeakMapTable'

License

WeakMapTable is under MIT license. See the LICENSE file for more info.

About

A weak-to-strong map table

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  
0