module documentation

Overlay for third-party chex.dataclass decorator. See https://github.com/deepmind/chex#dataclass-dataclasspy. Typing-wise, the differences between @dataclasses.dataclass and @chex.dataclass are: * The latter has a mappable_dataclass parameter, defaulting to True, which makes the dataclass inherit from Mapping. * Chex dataclasses have replace, from_tuple, and to_tuple methods.

Class ChexOverlay Undocumented
Class Dataclass Implements the @dataclass decorator.