class CADataFrame::MergeFrame::NilSorter

Public Instance Methods

<=>(other) click to toggle source
# File lib/carray-dataframe/join.rb, line 45
def <=>(other)
  other.nil? ? 0 : -1
end
==(_other) click to toggle source
# File lib/carray-dataframe/join.rb, line 41
def ==(_other)
  false
end
nil?() click to toggle source
# File lib/carray-dataframe/join.rb, line 37
def nil?
  true
end