Symbolized Hash with indifferent access.
Symbolized provides a Hash with indifferent access, but with keys stored internally as symbols. Useful when you have a lot of hashes with the same keys, and it may become inefficient to keep all these identical keys as strings. A good use case is data processing pipelines.
Post a comment