TDict

class hail.expr.TDict(key_type, value_type)[source]

Hail type corresponding to dict

This is a Hail type. Values of this type have two representations: the expression language representation and the Python representation.

Parameters:
  • key_type (Type) – type of dict keys
  • value_type (Type) – type of dict values
Variables:
  • key_type (Type) – type of dict keys
  • value_type (Type) – type of dict values

Methods

__init__ x.__init__(…) initializes x; see help(type(x)) for signature
pretty Returns a prettily formatted string representation of the type.