En prévision de l'arrivée de la forge institutionnelle INRAE, nous vous invitons à créer vos nouveaux projets sur la forge MIA.
export class HashTable {
private _hashes: { [key: string]: any };
constructor() {
this._hashes = {};
}
public get(key: any): any {
return this._hashes[JSON.stringify(key)];
public put(key: any, value: any) {
this._hashes[JSON.stringify(key)] = value;