hasVerticalLineLeft function

bool hasVerticalLineLeft(
  1. Artifact matrix
)

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

Implementation

bool hasVerticalLineLeft(Artifact matrix) {
  return _hasVerticalLine(matrix, _VerticalLineSide.left);
}