dmfs / Bolts

Android bolts, a collection of spare parts.
0 stars 0 forks source link

Boxed-Bolts #20

Open dmfs opened 6 years ago

dmfs commented 6 years ago

I think the we should base the Box interface on Single now, like so:

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.