package
0.0.0-20241212084257-8315842ba2f4
Repository: https://github.com/theyoprst/adventofcode.git
Documentation: pkg.go.dev

# Functions

No description provided by the author
NewPos returns a new Pos with given row and column.
ToString() print table of characters.

# Variables

DirsAll is a slice of 8 simple and diagonal directions: Left, Right, Up, Down, UpRight, UpLeft, DownRight, DownLeft.
DirsDiag is a slice of 4 diagonal directions: UpRight, UpLeft, DownRight, DownLeft.
DirsSimple is a slice of 4 simple directions: Left, Right, Up, Down.
Down is a Pos direction pointing down.
DownLeft is a Pos direction pointing down and left.
DownRight is a Pos direction pointing down and right.
East = Right.
Left is a Pos direction pointing to the left.
North = Up.
NorthEast = UpRight.
NorthWest = UpLeft.
Right is a Pos direction pointing to the right.
South = Down.
SouthEast = DownRight.
SouthWest = DownLeft.
Up is a Pos direction pointing up.
UpLeft is a Pos direction pointing up and left.
UpRight is a Pos direction pointing up and right.
West = Left.
Zero value for Pos.

# Structs

No description provided by the author

# Type aliases

No description provided by the author