We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Is a skip method possible ?
This could simplify unit test and some edge case where first or more value must be ignore.
First I can simply change
public func observe(_ queue: DispatchQueue? = nil, _ observer: @escaping Observer) -> Disposable
to
public func observe(_ queue: DispatchQueue? = nil, skipFirst: Bool = false, _ observer: @escaping Observer) -> Disposable
This could solve the first emitted null value when using Observable(String?) = Observable(nil)
Observable(String?) = Observable(nil)
But i can't add skip(count: Int) method without a lot of changes, maybe due to a lack of knowledge about the library.
✌️ Ben
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Is a skip method possible ?
This could simplify unit test and some edge case where first or more value must be ignore.
First I can simply change
to
This could solve the first emitted null value when using
Observable(String?) = Observable(nil)
But i can't add skip(count: Int) method without a lot of changes, maybe due to a lack of knowledge about the library.
✌️
Ben
The text was updated successfully, but these errors were encountered: