`T` is in the out position for Observable even tho...
# announcements
a
T
is in the out position for Observable even though you see it appear in subscribe() method as a parameter it isn't a direct parameter
subscribe(s: T)
would not be allowed but
subscribe(s: Subscriber<T>)
is. (is that correct @orangy ? why isn't that considered conflicting with
out
position?)