Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ISubtractionOperators.cs
Go to the documentation of this file.
2
3namespace System;
4
5[RequiresPreviewFeatures("Generic Math is in preview.", Url = "https://aka.ms/dotnet-warnings/generic-math-preview")]
6public interface ISubtractionOperators<TSelf, TOther, TResult> where TSelf : ISubtractionOperators<TSelf, TOther, TResult>
7{
8 static abstract TResult operator -(TSelf left, TOther right);
9}
static TResult operator-(TSelf left, TOther right)