main
1namespace gorilla.commons.utility
2{
3 public interface Mapper<Input, 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}