Int#

class swordfish._swordfishcpp.Int(data: int)#
class swordfish._swordfishcpp.Int

Represents a Swordfish Int object, initialized optionally with a Python int value.

Examples:
>>> import swordfish as sf
>>> sf.data.Int()
Int(null)
>>> sf.data.Int(23)
Int(23)
NULL_VALUE: Int#