Class: NilClass

Inherits:
Object
  • Object
show all
Defined in:
lib/cog/primitive.rb

Instance Method Summary collapse

Instance Method Details

#to_litString

Returns literal representation in the Cog.active_language.

Examples:

# For C
nil.to_lit # => 'NULL'

# For C#
nil.to_lit # => 'null'

Returns:



115
116
117
# File 'lib/cog/primitive.rb', line 115

def to_lit
  Cog.active_language.to_null(self)
end