namespace jive { public class ChainedMapper : Mapper { readonly Mapper left; readonly Mapper right; public ChainedMapper(Mapper left, Mapper right) { this.left = left; this.right = right; } public Right map_from(Left item) { return right.map_from(left.map_from(item)); } } }