Sha256: 8346cab65f907187f0b7083203b763e7170f180b1371248ec11560bdb930d189
Contents?: true
Size: 266 Bytes
Versions: 10
Compression:
Stored size: 266 Bytes
Contents
module Kernel # The opposite of #nil?. # # "hello".not_nil? # -> true # nil.not_nil? # -> false # # CREDIT: Gavin Sinclair def not_nil? ! nil? end # DEPRECATED: #not_nil? it enough. #alias_method :non_nil?, :not_nil? end
Version data entries
10 entries across 9 versions & 2 rubygems