Procs
proc pop_any(state: var JoyState): JoyType {...}{.raises: [ValueError], tags: [].}
- Source Edit
proc pop_bool(state: var JoyState): bool {...}{.raises: [ValueError], tags: [].}
- Source Edit
proc pop_int(state: var JoyState): BigInt {...}{.raises: [ValueError], tags: [].}
- Source Edit
proc pop_list(state: var JoyState): JoyListType {...}{.raises: [ValueError], tags: [].}
- Source Edit
proc push_int(a: BigInt; state: var JoyState) {...}{.raises: [], tags: [].}
- Source Edit
proc push_list(a: JoyListType; state: var JoyState) {...}{.raises: [], tags: [].}
- Source Edit
proc push_bool(a: bool; state: var JoyState) {...}{.raises: [], tags: [].}
- Source Edit