Ver a proveniência

Fixes bad has implementation

main
Eric Amodio há 4 anos
ascendente
cometimento
cfca480725
1 ficheiros alterados com 2 adições e 1 eliminações
  1. +2
    -1
      src/system/searchTree.ts

+ 2
- 1
src/system/searchTree.ts Ver ficheiro

@ -200,7 +200,8 @@ export class TernarySearchTree {
}
has(key: K): boolean {
return Boolean(this._getNode(key));
const node = this._getNode(key);
return !(node?.value === undefined && node?.mid === undefined);
}
delete(key: K): void {

Carregando…
Cancelar
Guardar