Closed
Description
xref https://github.com/pandas-dev/pandas/pull/22325/files#r220580694
unary ops are not implemented by EAs and also not dispatched to EAs:
In [161]: s = pd.Series([1, 2, 3], dtype='Int64')
In [162]: -s
Out[162]:
0 -1
1 -2
2 -3
dtype: object