effect-tree
    Preparing search index...

    Function isRowF

    • Type Parameters

      • A

      Parameters

      • self:
            | { _tag: "EmptyF" }
            | { _tag: "TextF"; show: string }
            | {
                _tag: "RowF";
                cells: A[];
                hAlign: "left" | "right" | "center";
                hStrut: Text;
                vAlign: "top" | "middle" | "bottom";
                vStrut: [Text, ...Text[]];
            }
            | {
                _tag: "ColumnF";
                cells: A[];
                hAlign: "left"
                | "right"
                | "center";
                hStrut: Text;
            }

      Returns self is {
          _tag: "RowF";
          cells: A[];
          hAlign: "left" | "right" | "center";
          hStrut: Text;
          vAlign: "top" | "middle" | "bottom";
          vStrut: [Text, ...Text[]];
      }