2023-03-09 16:44:23 -05:00

10 lines
262 B
C#

using System.Runtime.CompilerServices;
namespace Nerd_STF.Mathematics.Abstract;
public interface IFromTuple<TSelf, TTuple> where TSelf : IFromTuple<TSelf, TTuple>
where TTuple : ITuple
{
public static abstract implicit operator TSelf(TTuple val);
}