def dispatch_to_axis_pl(axis, method, *args, &block)
      if %i[vector column].include?(axis)
        send(:"#{method}_vectors", *args, &block)
      elsif axis == :row
        send(:"#{method}_rows", *args, &block)