Add property length to SortedSet (#42872)

The SortedSet [documentation](https://www.collectionsjs.com/sorted-set) indicates that it has a property `length`.
This commit is contained in:
David Ye 2020-03-27 10:10:04 -07:00 committed by GitHub
parent 631ce47c56
commit 15b7f25a65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,6 +72,8 @@ declare namespace internal {
}
export class SortedSet<T> extends AbstractSet {
length: number;
constructor(
values?: T[],
equals?: (a: T, b: T) => boolean,