// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Numerics { /// <summary>Defines a mechanism for decrementing a given value.</summary> /// <typeparam name="TSelf">The type that implements this interface.</typeparam> public interface IDecrementOperators<TSelf> where TSelf : IDecrementOperators<TSelf>? { /// <summary>Decrements a value.</summary> /// <param name="value">The value to decrement.</param> /// <returns>The result of decrementing <paramref name="value" />.</returns> static abstract TSelf operator --(TSelf value); /// <summary>Decrements a value.</summary> /// <param name="value">The value to decrement.</param> /// <returns>The result of decrementing <paramref name="value" />.</returns> /// <exception cref="OverflowException">The result of decrementing <paramref name="value" /> is not representable by <typeparamref name="TSelf" />.</exception> static virtual TSelf operator checked --(TSelf value) => --value; } }