| 875 | |
| 876 | template <class T1, class... Args> |
| 877 | auto textarrow(NotAxesHandle<T1> x, Args&&... args) { |
| 878 | return gca()->textarrow(x, std::forward<Args>(args)...); |
| 879 | } |
| 880 | |
| 881 | template <class... Args> auto textarrow(axes_handle ax, Args&&... args) { |
| 882 | return ax->textarrow(std::forward<Args>(args)...); |