class Terminal::Table::UnicodeThickEdgeBorder

def initialize

def initialize
  super
  @data = {
    nil => nil,
    nw: "┏", nx: "━", n:  "┯", ne: "┓", nd: nil,
    yw: "┃",          y:  "│", ye: "┃", 
    aw: "┣", ax: "═", ai: "╪", ae: "┫", ad: '╤', au: "╧", # double
    bw: "┣", bx: "━", bi: "┿", be: "┫", bd: '┯', bu: "┷", # heavy/bold/thick
    w:  "┠", x:  "─", i:  "┼", e:  "┨", dn: "┬", up: "┴", # normal div
    sw: "┗", sx: "━", s:  "┷", se: "┛", su:  nil,
    # alternative dots/dashes
    x_dot4:  '┈', x_dot3:  '┄', x_dash:  '╌',
    bx_dot4: '┉', bx_dot3: '┅', bx_dash: '╍',
  }
end