Skip to content
New issue

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

SkipWhile #14

Closed
isc30 opened this issue Mar 1, 2018 · 1 comment
Closed

SkipWhile #14

isc30 opened this issue Mar 1, 2018 · 1 comment

Comments

@isc30
Copy link
Owner

isc30 commented Mar 1, 2018

SkipWhile will only skip those elements in list until predicate is true and after that, it will stop filtering.

Proposed signature:

export interface IQueryable<TOut>
{
    skipWhile(predicate: Predicate<TOut>): IEnumerable<TOut>;
}

Using deferred execution

@isc30
Copy link
Owner Author

isc30 commented Mar 1, 2018

ticket

@isc30 isc30 closed this as completed Mar 1, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Development

No branches or pull requests

1 participant