struct AdventOfCode2021::Day19::Beam

Defined in:

day19/beam.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(x : Int32, y : Int32, z : Int32) #

[View source]
def self.new(&) #

[View source]

Instance Method Detail

def *(other : RotatingMatrix) #

[View source]
def +(other : Beam) #

[View source]
def -(other : Beam) #

[View source]
def <=>(other : Beam) #

[View source]
def ==(other : Beam) #

[View source]
def ==(other) #
Description copied from struct Struct

Returns true if this struct is equal to other.

Both structs' instance vars are compared to each other. Thus, two structs are considered equal if each of their instance variables are equal. Subclasses should override this method to provide specific equality semantics.

struct Point
  def initialize(@x : Int32, @y : Int32)
  end
end

p1 = Point.new 1, 2
p2 = Point.new 1, 2
p3 = Point.new 3, 4

p1 == p2 # => true
p1 == p3 # => false

[View source]
def [](i : Int32) #

[View source]
def to_s(io) #

[View source]
def x : Int32 #

[View source]
def x=(x : Int32) #

[View source]
def y : Int32 #

[View source]
def y=(y : Int32) #

[View source]
def z : Int32 #

[View source]
def z=(z : Int32) #

[View source]