Bindy
Bindy copied to clipboard
Migrating from v0.1.8 & OptionalObservable
I inherited a code base using Bindy 0.1.8 and wanted to update to the latest version. I'm getting an error that OptionalObservable doesn't exist. Is the best way of handling this to declare a regular Observable make the generic type an optional? For example:
eg. OptionalObservable < Date > ( nil ) ==> Observable< Date? >(nil)