Skip to content

Instantly share code, notes, and snippets.

View marcbaldwin's full-sized avatar

Marc Baldwin marcbaldwin

  • Bournemouth, UK
View GitHub Profile
@marcbaldwin
marcbaldwin / RxRelayPropertyWrapper.swift
Created June 24, 2021 10:07
RxSwift RxRelay Property Wrapper
import RxRelay
import RxSwift
@propertyWrapper
final class RxRelayProperty<Value> {
var wrappedValue: Value {
get { relay.value }
set { relay.accept(newValue) }
}