session-ios/Signal/src/util/ArrayUtil.h
Ben Sandofsky f65d552f6d Prefix NSArray categories.
Begin process of prefixing categories on Foundation and UIKit. This
follows Cocoa best practices. This makes sense given the number of third
party libraries the project incorporates, which may include their own
colliding category method names.

Use OWS prefix on classes that may be used across apps.
2014-11-20 00:34:47 -08:00

8 lines
149 B
Objective-C

#import <Foundation/Foundation.h>
@interface NSArray (Util)
-(NSData*)ows_toUint8Data;
-(NSData*)ows_concatDatas;
-(NSArray*)ows_concatArrays;
@end