module Definition::Dsl::Nil

Public Instance Methods

Nil() click to toggle source

Example: Nil

# File lib/definition/dsl/nil.rb, line 8
def Nil # rubocop:disable Style/MethodName
  Types::Lambda.new(:nil) do |value|
    conform_with(value) if value.nil?
  end
end