1 implementation of IStatefulUnaryOperator
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.Round.cs (1)
295private readonly struct MultiplyRoundDivideOperator<T, TDelegatedRound> : IStatefulUnaryOperator<T>
6 references to IStatefulUnaryOperator
System.Numerics.Tensors (6)
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IStatefulUnaryOperator.cs (1)
28where TStatefulUnaryOperator : struct, IStatefulUnaryOperator<T>
System\Numerics\Tensors\netcore\TensorPrimitives.RootN.cs (1)
27private readonly struct RootNOperator<T>(int n) : IStatefulUnaryOperator<T> where T : IRootFunctions<T>
System\Numerics\Tensors\netcore\TensorPrimitives.Rotate.cs (1)
41private readonly unsafe struct RotateLeftOperator<T>(int amount) : IStatefulUnaryOperator<T> where T : IBinaryInteger<T>
System\Numerics\Tensors\netcore\TensorPrimitives.Round.cs (1)
346private readonly struct RoundFallbackOperator<T>(int digits, MidpointRounding mode) : IStatefulUnaryOperator<T>
System\Numerics\Tensors\netcore\TensorPrimitives.ScaleB.cs (1)
26private readonly struct ScaleBOperator<T>(int n) : IStatefulUnaryOperator<T> where T : IFloatingPointIeee754<T>
System\Numerics\Tensors\netcore\TensorPrimitives.ShiftLeft.cs (1)
56private readonly struct ShiftLeftOperator<T>(int amount) : IStatefulUnaryOperator<T> where T : IShiftOperators<T, int, T>