src/pylib/builtins/misc

Search:
Group by:
Source   Edit  

Templates

template id(x): int

Example:

let a = 1.0
var b = 1
assert id(a) != id(b)
# not the same as Python's (Python's small int is stored in pool)
block:
  var a,b = 1
  assert id(a) != id(b)
Source   Edit