It seems that it is currently impossible to create an `Observable` from an array of primitives, e.g.: ``` java char[] chars = "some string".toCharArray(); Observable.from(chars); //does not compile ``` Is this a conscious decision?