struct Day4::Event

Included Modules

Defined in:

day4.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(date : String, minute : Int32, typ : EventType, guard : Int32) #

[View source]
def self.new(s : String) #

[View source]

Instance Method Detail

def <=>(other : Event) #
Description copied from module Comparable(Day4::Event)

The comparison operator. Returns 0 if the two objects are equal, a negative number if this object is considered less than other, a positive number if this object is considered greater than other, or nil if the two objects are not comparable.

Subclasses define this method to provide class-specific ordering.

The comparison operator is usually used to sort values:

# Sort in a descending way:
[3, 1, 2].sort { |x, y| y <=> x } # => [3, 2, 1]

# Sort in an ascending way:
[3, 1, 2].sort { |x, y| x <=> y } # => [1, 2, 3]

[View source]
def clone #

[View source]
def copy_with(date _date = @date, minute _minute = @minute, typ _typ = @typ, guard _guard = @guard) #

[View source]
def date : String #

def guard : Int32 #

def minute : Int32 #

def typ : EventType #