Int - mfichman/jogo GitHub Wiki

Signed, 64-bit integer. This class will always have 64 bits of precision, regardless of the platform.

@init()

No comment

@add(other Int) Int

No comment

@sub(other Int) Int

No comment

@mul(other Int) Int

No comment

@div(other Int) Int

No comment

@mod(other Int) Int

No comment

@equal(other Int) Bool

No comment

@less(other Int) Bool

No comment

@neg() Int

No comment

@compl() Int

No comment

str?() String

Returns the string representation of 'self'

max(other Int) Int

Returns the maximum of 'self' and 'other'

min(other Int) Int

Returns the minimum of 'self' and 'other'

abs?() Int

Returns the absolute value of 'self'

@destroy()

No comment