module ServiceOperation::Params::Bool

Matches true or false

Public Class Methods

===(other) click to toggle source

@return [Boolean]

# File lib/service_operation/params/types.rb, line 12
def self.===(other)
  true.equal?(other) || false.equal?(other)
end