Detail: IndexMinute: Operator Unary¶
Overview: IndexMinute: Operator Unary
- IndexMinute.__abs__()¶
>>> ix = sf.IndexMinute(('1517-04-01', '1517-12', '1517-06-30')) >>> abs(ix) UFuncTypeError(<ufunc 'absolute'>, (dtype('<M8[m]'), dtype('<M8[m]')))
- IndexMinute.__invert__()¶
>>> ix = sf.IndexMinute(('1517-04-01', '1517-12', '1517-06-30')) >>> ~ix TypeError("ufunc 'invert' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''")
- IndexMinute.__neg__()¶
>>> ix = sf.IndexMinute(('1517-04-01', '1517-12', '1517-06-30')) >>> -ix UFuncTypeError(<ufunc 'negative'>, (dtype('<M8[m]'), dtype('<M8[m]')))
- IndexMinute.__pos__()¶
>>> ix = sf.IndexMinute(('1517-04-01', '1517-12', '1517-06-30')) >>> +ix ['1517-04-01T00:00' '1517-12-01T00:00' '1517-06-30T00:00']
IndexMinute: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary | Operator Unary | Accessor Values | Accessor Datetime | Accessor String | Accessor Regular Expression | Accessor Hashlib