src/intobject/decl_private

Source   Edit  

Types

IntObject = object
Source   Edit  
SomeIntegerOrObj = SomeInteger | IntObject
Source   Edit  

Procs

func digits(self: IntObject): seq[Digit] {.inline, ...raises: [], tags: [],
    forbids: [].}
inner Source   Edit  
func digits(self: var IntObject): var seq[Digit] {.inline, ...raises: [], tags: [],
    forbids: [].}
inner Source   Edit  
func digits=(self: var IntObject; s: seq[Digit]) {.inline, ...raises: [], tags: [],
    forbids: [].}
inner Source   Edit  
func sign(self: IntObject): IntSign {.inline, ...raises: [], tags: [], forbids: [].}
public api (the only one among these accessors) Source   Edit  
func sign(self: var IntObject): var IntSign {.inline, ...raises: [], tags: [],
    forbids: [].}
inner Source   Edit  
func sign=(self: var IntObject; s: IntSign) {.inline, ...raises: [], tags: [],
    forbids: [].}
inner Source   Edit  

Templates

template truncate(x: TwoDigits): Digit
Source   Edit