Sha256: df6f7fe24f9d880d70aaf5e7455fdf42050cc8681764163a9ff4e26534f1a4fb
Contents?: true
Size: 525 Bytes
Versions: 30
Compression:
Stored size: 525 Bytes
Contents
# frozen_string_literal: true module Cmdlet # Comparison helpers, eg. or, and, equal, not equal, less than, greater than etc. module Comparison # Lt: Return true if left hand side LESS THAN right hand side class Lt < Cmdlet::BaseCmdlet # # @param [Object] lhs - lhs - left hand side value # @param [Object] rhs - rhs - right hand side value # @return [String] truthy value if left hand side LESS THAN right hand side def call(lhs, rhs) lhs < rhs end end end end
Version data entries
30 entries across 30 versions & 1 rubygems