isc30 / linq-collections

Strongly typed Linq and Collections implementation for Javascript and TypeScript (ECMAScript 5)
https://www.npmjs.com/package/linq-collections
MIT License
119 stars 12 forks source link

SequenceEqual #15

Closed isc30 closed 6 years ago

isc30 commented 6 years ago

Determines whether two sequences are equal by comparing the elements

Proposed signature:

export interface IQueryable<TOut>
{
    sequenceEqual(other: IQueryable<TOut>): boolean;
}
isc30 commented 6 years ago

ticket