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