Sha256: 20c25f2916843bb63026749e8f92afba436088c47fc0c5d4347f85ae500ca5a4
Contents?: true
Size: 470 Bytes
Versions: 1
Compression:
Stored size: 470 Bytes
Contents
# frozen_string_literal: true require_relative 'atomic_term' module MiniKraken module Atomic # A specialized atomic term that represents an integer value. # in MiniKraken # @note As MiniKraken doesn't support integer values yet, this class is WIP. class KInteger < AtomicTerm # @param aValue [Integer] Ruby representation of integer value def initialize(aValue) super(aValue) end end # class end # module end # module
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mini_kraken-0.2.04 | lib/mini_kraken/atomic/k_integer.rb |