Sha256: aa419d4e7d923ea49c1c21fa9c67b64897c2009bcd70b222e5e28a782d04f955

Contents?: true

Size: 444 Bytes

Versions: 10

Compression:

Stored size: 444 Bytes

Contents

# frozen_string_literal: true

# Checks bug introduced when converters was combined with token converter.
#
# @author Royce Remulla
#
class LogicFour
  # Perform logical AND operation on two arguments.
  #
  # @param argument1 first argument of Boolean type.
  # @param argument2 second argument of Boolean type.
  def process(argument1, argument2, argument3, argument4)
    !argument1 && !argument2 && !argument3 && argument4 == 'a'
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rast-0.11.0 examples/logic_four.rb
rast-0.10.0 examples/logic_four.rb
rast-0.9.0 examples/logic_four.rb
rast-0.9.0.pre examples/logic_four.rb
rast-0.8.1.pre examples/logic_four.rb
rast-0.8.0.pre examples/logic_four.rb
rast-0.6.2.pre examples/logic_four.rb
rast-0.6.1.pre examples/logic_four.rb
rast-0.6.0.pre examples/logic_four.rb
rast-0.4.2.pre examples/logic_four.rb