Sha256: ae8fe73510efeb75e44b440e94efa24569e0b213b47fc186a5fa384bdd0b893d
Contents?: true
Size: 457 Bytes
Versions: 29
Compression:
Stored size: 457 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved. # # Division operator. # module GlooLang module Expr class OpDiv < GlooLang::Core::Op # # Perform the operation and return the result. # def perform( left, right ) return left / right.to_i if left.is_a? Integer return left / right.to_f if left.is_a? Numeric end end end end
Version data entries
29 entries across 29 versions & 1 rubygems