summaryrefslogtreecommitdiff
path: root/lib/Mapper.cs
blob: de6b8e237e4c502baf77326cb3f584de9684fcde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace jive
{
  public interface Mapper<in Input, out Output>
  {
    Output map_from(Input item);
  }

  public interface Mapper
  {
    Output map_from<Input, Output>(Input item);
  }
}