class EulerPoker::HighCard

Public Instance Methods

instance_comparison(other) click to toggle source
# File lib/euler_poker/hands/high_card.rb, line 5
def instance_comparison(other)
  descending_ranks <=> other.descending_ranks
end
valid?() click to toggle source
# File lib/euler_poker/hands/high_card.rb, line 9
def valid?
  true
end