Searched refs:inc_end (Results 1 – 1 of 1) sorted by relevance
/zcbor-latest/zcbor/ |
D | zcbor.py | 562 def type_and_range(self, new_type, min_val, max_val, inc_end=True): argument 566 if not inc_end: 648 def set_size_range(self, min_size, max_size_in, inc_end=True): argument 652 max_size = max_size_in if inc_end else max_size_in - 1 849 "UINT", *map(lambda num: int(num, 0), _range.split("...")), inc_end=False)), 852 "INT", *map(lambda num: int(num, 0), _range.split("...")), inc_end=False)), 855 "NINT", *map(lambda num: int(num, 0), _range.split("...")), inc_end=False)), 873 *map(lambda num: int(num, 0), _range.split("...")), inc_end=False)),
|