github.com/joshprzybyszewski/masyu@v0.0.0-20230508015604-f31a025f6e7e/model/coord.go (about)

     1  package model
     2  
     3  type Dimension uint8
     4  
     5  type DimensionBit uint64
     6  
     7  func (d Dimension) Bit() DimensionBit {
     8  	return 1 << d
     9  }
    10  
    11  type Coord struct {
    12  	Row Dimension
    13  	Col Dimension
    14  }