mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 01:52:42 +03:00
Merge pull request #4863 from urbit/lf/group-feed-rep
BigIntOrderedMap: fix caching, again
This commit is contained in:
commit
5651ee01f7
@ -16,7 +16,7 @@ function sortBigInt(a: BigInteger, b: BigInteger) {
|
||||
}
|
||||
export default class BigIntOrderedMap<V> implements Iterable<[BigInteger, V]> {
|
||||
root: Record<string, V> = {}
|
||||
cachedIter: [BigInteger, V][] = [];
|
||||
cachedIter: [BigInteger, V][] = null;
|
||||
[immerable] = true;
|
||||
|
||||
constructor(items: [BigInteger, V][] = []) {
|
||||
|
Loading…
Reference in New Issue
Block a user