tables::row::operator

1) Assignment operator

template <typename... Ts, is_primitive_type... Ps>
row<std::pair<Ts,Ps>...>&
row<std::pair<Ts,Ps>...>::operator=(
  const row<std::pair<Ts,Ps>...>& other
)

2) Move assignment operator

template <typename... Ts, is_primitive_type... Ps>
row<std::pair<Ts,Ps>...>&
row<std::pair<Ts,Ps>...>::operator=(
  row<std::pair<Ts,Ps>...>&& other
)
--