summaryrefslogtreecommitdiff
path: root/platform/darwin/src/NSArray+MGLAdditions.h
blob: eb1cfb7c476f7726aeff855677cc00d4288b93c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import <Foundation/Foundation.h>

#import <mbgl/util/feature.hpp>

@interface NSArray (MGLAdditions)

- (std::vector<mbgl::Value>)mgl_vector;

/** Returns a string resulting from inserting a separator between each attributed string in the array */
- (NSAttributedString *)mgl_attributedComponentsJoinedByString:(NSString *)separator;

@end