main
 1namespace jive
 2{
 3  public interface Mapper<in Input, out Output>
 4  {
 5    Output map_from(Input item);
 6  }
 7
 8  public interface Mapper
 9  {
10    Output map_from<Input, Output>(Input item);
11  }
12}