tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
ITransformer{TInput,TOutput}.cs
Go to the documentation of this file.
1using System;
2using System.Linq.Expressions;
3
5{
11 public interface ITransformer<TInput, TOutput>
12 {
16 Expression<Func<TInput, TOutput>> Expression { get; }
17
21 Func<TInput, TOutput> CompiledExpression { get; }
22 }
23}
Contains a transformation Expression for converting TInput s to TOutput s.
Expression< Func< TInput, TOutput > > Expression
Expression<TDelegate> form of the transformation.
Func< TInput, TOutput > CompiledExpression
The compiled Expression.