| 857 | |
| 858 | template <class T1, class... Args> |
| 859 | auto arrow(NotAxesHandle<T1> x, Args&&... args) { |
| 860 | return gca()->arrow(x, std::forward<Args>(args)...); |
| 861 | } |
| 862 | |
| 863 | template <class... Args> auto arrow(axes_handle ax, Args&&... args) { |
| 864 | return ax->arrow(std::forward<Args>(args)...); |