aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/RxLibrary/transformations/GRXMappingWriter.h
blob: 13640c5bd6d20967b77fd7de2266c18f0187a1cb (plain)
1
2
3
4
5
6
7
#import "GRXWriter.h"

// A "proxy" writer that transforms all the values of its input writer by using a mapping function.
@interface GRXMappingWriter : GRXWriter
- (instancetype)initWithWriter:(id<GRXWriter>)writer map:(id (^)(id value))map
    NS_DESIGNATED_INITIALIZER;
@end