class NilClass

Public Instance Methods

&(other ;) click to toggle source
# File lib/nydp/core_ext.rb, line 48
def &        other ; self               ; end
+(other ;) click to toggle source
# File lib/nydp/core_ext.rb, line 42
def +        other ; other              ; end
_nydp_call(*_ ;) click to toggle source
# File lib/nydp/core_ext.rb, line 50
def _nydp_call  *_ ; raise CantCallNil  ; end
_nydp_get(a ;) click to toggle source
# File lib/nydp/core_ext.rb, line 46
def _nydp_get    a ; self               ; end
_nydp_set(a, v ;) click to toggle source
# File lib/nydp/core_ext.rb, line 47
def _nydp_set a, v ; self               ; end
assign(*_ ;) click to toggle source
# File lib/nydp/core_ext.rb, line 44
def assign      *_ ; self               ; end
car() click to toggle source
# File lib/nydp/core_ext.rb, line 37
def car            ; self               ; end
cdr() click to toggle source
# File lib/nydp/core_ext.rb, line 38
def cdr            ; self               ; end
compile_to_ruby(i, s, o=nil ;) click to toggle source
# File lib/nydp/core_ext.rb, line 51
def compile_to_ruby i, s, o=nil ; "#{i}nil"      ; end
copy() click to toggle source
# File lib/nydp/core_ext.rb, line 43
def copy           ; self               ; end
is?(other ;) click to toggle source
# File lib/nydp/core_ext.rb, line 40
def is?      other ; self.equal? other  ; end
isnt?(other ;) click to toggle source
# File lib/nydp/core_ext.rb, line 41
def isnt?    other ; !self.equal? other ; end
nydp_type() click to toggle source
# File lib/nydp/core_ext.rb, line 45
def nydp_type      ; :nil               ; end
size() click to toggle source
# File lib/nydp/core_ext.rb, line 39
def size           ; 0                  ; end
|(other ;) click to toggle source
# File lib/nydp/core_ext.rb, line 49
def |        other ; other              ; end