class documentation

class anon_map(dict):

View In Hierarchy

A map that creates new keys for missing key access.

Produces an incrementing sequence given a series of unique keys.

This is similar to the compiler prefix_anon_map class although simpler.

Inlines the approach taken by sqlalchemy.util.PopulateDict which is otherwise usually used for this type of operation.

Method __init__ Undocumented
Method __missing__ Undocumented
Instance Variable index Undocumented
def __init__(self):

Undocumented

def __missing__(self, key):

Undocumented

index: int =

Undocumented