This repository was archived by the owner on May 26, 2025. It is now read-only.
This repository was archived by the owner on May 26, 2025. It is now read-only.
IReadOnlyList<string> TranslationNames -> IReadOnlySet<string> TranslationNames #27
Feature description
TranslationNamesproperty is currently impleemented as a read only list of strings. I think it would be better to change it to a read only set (IReadOnlySet<string>) because it allows for a faster checks likeContains, which in my opinion are more important in this context than index-based access to translations.