Open dmfs opened 6 years ago
I think the we should base the Box interface on Single now, like so:
Single
public interface Box<T> extends Single<T>, Parcelable { }
The content method is fine, but value matches as well and extending Single makes a lot of sense to me.
content
value
I think the we should base the Box interface on
Single
now, like so:The
content
method is fine, butvalue
matches as well and extendingSingle
makes a lot of sense to me.