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