hasVerticalLineRight function

bool hasVerticalLineRight(
  1. Artifact matrix
)

Checks if the artifact has a vertical line on the right side.

Implementation

bool hasVerticalLineRight(Artifact matrix) {
  return _hasVerticalLine(matrix, _VerticalLineSide.right);
}