Few more comments

This commit is contained in:
2025-06-18 11:49:40 +00:00
parent ad9d7f94de
commit a097fa7f71
8 changed files with 35 additions and 47 deletions

View File

@@ -10,12 +10,12 @@ namespace DNW\Skills;
final class HashMap
{
/**
* @var mixed[] $hashToValue
* @var mixed[] $hashToValue Store the hash to value mapping.
*/
private array $hashToValue = [];
/**
* @var mixed[] $hashToKey
* @var mixed[] $hashToKey Store the hash to original key mapping.
*/
private array $hashToKey = [];