src/pylib/builtins/pyhashes

Source   Edit  

Procs

proc hash(x: float): int {....raises: [], tags: [], forbids: [].}
Source   Edit  
proc hash(x: int): int {....raises: [], tags: [], forbids: [].}
Source   Edit  
proc hash(x: proc): int
Source   Edit  
proc hash(x: PyDict): int {.error: "TypeError: unhashable type: PyDict".}
Source   Edit  
proc hash(x: PyList): int {.error: "TypeError: unhashable type: PyList".}
Source   Edit  
proc hash(x: PySet): int {.error: "TypeError: unhashable type: PySet".}
Source   Edit  
proc hash(x: PyStr | PyBytes): int
Source   Edit  
proc hash(x: PyTComplex): int
Source   Edit  
proc hash(x: tuple): int
Source   Edit