react-native-bt-device/ios/RNBTDevice/Device/LinqToObjectiveC-master/NSArray+LinqExtensions.h

198 lines
7.7 KiB
Objective-C
Executable File

//
// NSArray+LinqExtensions.h
// LinqToObjectiveC
//
// Created by Colin Eberhardt on 02/02/2013.
// Copyright (c) 2013 Colin Eberhardt. All rights reserved.
//
#import <Foundation/Foundation.h>
// Selector macros
// Use the cast variants to explicitly box an non object value.
#define LINQSel(__key) (^id(id item){return [item __key];})
#define LINQSelCast(__cast, __key) (^id(id item){return @( (__cast) [item __key]);})
#define LINQSelInt(__key) LINQSelCast(NSInteger, __key)
#define LINQSelUInt(__key) LINQSelCast(NSUInteger, __key)
// Key path selection macros.
// Values obtained via KVC methods are automatically boxed.
#define LINQKeyPath(__keyp) (^id(id item){return [item valueForKeyPath:@#__keyp];})
#define LINQKey(__key) (^id(id item){return [item valueForKey:@#__key];})
typedef BOOL (^LINQCondition)(id item);
typedef id (^LINQSelector)(id item);
typedef id (^LINQAccumulator)(id item, id aggregate);
/**
Various NSArray extensions that provide a Linq-style query API
*/
@interface NSArray (QueryExtension)
/** Filters a sequence of values based on a predicate.
@param predicate The function to test each source element for a condition.
@return An array that contains elements from the input sequence that satisfy the condition.
*/
- (NSArray*) linq_where:(LINQCondition)predicate;
/** Projects each element of a sequence into a new form.
@param selector A transform function to apply to each element.
@return An array whose elements are the result of invoking the transform function on each element of source.
*/
- (NSArray*) linq_select:(LINQSelector)transform;
/** Sorts the elements of a sequence in ascending order.
@return An array whose elements are sorted in ascending order.
*/
- (NSArray*) linq_sort;
/** Sorts the elements of a sequence in ascending order by using a specified keySelector.
@param keySelector A selector that provides the 'key' which the array should by sorted by.
@return An array whose elements are sorted in ascending order.
*/
- (NSArray*) linq_sort:(LINQSelector)keySelector;
/** Sorts the elements of a sequence in descending order.
@return An array whose elements are sorted in descending order.
*/
- (NSArray *)linq_sortDescending;
/** Sorts the elements of a sequence in descending order by using a specified keySelector.
@param keySelector A selector that provides the 'key' which the array should by sorted by.
@return An array whose elements are sorted in descending order.
*/
- (NSArray *)linq_sortDescending:(LINQSelector)keySelector;
/** Filters the elements of an an array based on a specified type.
@param type The type to filter the elements of the sequence on.
@return An array whose elements are all of the given type.
*/
- (NSArray*) linq_ofType:(Class)type;
/** Projects each element of a sequence to an NSArray and flattens the resulting sequences into one sequence.
@param transform A transform function to apply to each element, this should return an NSArray.
@return An array whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
*/
- (NSArray*) linq_selectMany:(LINQSelector)transform;
/** Returns distinct elements from a sequence.
@return An array of distinct elements.
*/
- (NSArray*) linq_distinct;
/** Returns distinct elements from a sequence, where the given selector is used to specify the value to use for equality for each item.
@param keySelector Specifies the value to use for equality for each item.
@return An array of distinct elements.
*/
- (NSArray*) linq_distinct:(LINQSelector)keySelector;
/** Applies an accumulator function over a sequence. The item in the array is used as the initial aggregate value.
@param accumulator An accumulator function to be invoked on each element.
@return The final accumulator value.
*/
- (id) linq_aggregate:(LINQAccumulator)accumulator;
/** Returns the first item from the source array, or nil if the array is empty.
@return The first item from the source array, or nil if the array is empty.
*/
- (id) linq_firstOrNil;
/** Returns the first item from the source array matching a predicate, or nil if there are no objects passing the test.
@param predicate The function to test each source element for a condition.
@return An item from the input sequence that satisfy the condition.
*/
- (id)linq_firstOrNil:(LINQCondition)predicate;
/** Returns the last item from the source array, or nil if the array is empty.
@return The last item from the source array, or nil if the array is empty.
*/
- (id) linq_lastOrNil;
/** Bypasses a specified number of elements in an array and then returns the remaining elements.
@param count The number of elements to bypass.
@return An array that contains the elements that occur after the specified index in the input array.
*/
- (NSArray*) linq_skip:(NSUInteger)count;
/** Returns a specified number of contiguous elements from the start of an array.
@param count The number of elements to take.
@return An array that contains the specified number of elements from the start of the input array.
*/
- (NSArray*) linq_take:(NSUInteger)count;
/** Determines whether all the elements of the array satisfies a condition.
@param condition The condition to test elements against.
@return Whether all the elements of the array satisfies a condition.
*/
- (BOOL) linq_all:(LINQCondition)condition;
/** Determines whether any of the elements of the array satisfies a condition.
@param condition The condition to test elements against.
@return Whether any of the elements of the array satisfies a condition.
*/
- (BOOL) linq_any:(LINQCondition)condition;
/** Groups the elements of the array by keys provided by the given key selector. The returned dictionary will contain the keys that are the result of applying the key selector function to each item of the array, and the value for each key is an array of all the items that return the same key value.
@param groupKeySelector Determines the group key for each item in the array
@return A dictionary that groups the items via the given key selector.
*/
- (NSDictionary*) linq_groupBy:(LINQSelector)groupKeySelector;
/** Transforms the source array into a dictionary by applying the given keySelector and valueSelector to each item in the array.
@param keySelector A selector function that is applied to each item to determine the key it will have within the returned dictionary.
@param valueSelector A selector function that is applied to each item to determine the value it will have within the returned dictionary.
@return A dictionary that is the result of applying the supplied selector functions to each item of the array.
*/
- (NSDictionary*) linq_toDictionaryWithKeySelector:(LINQSelector)keySelector valueSelector:(LINQSelector)valueSelector;
/** Transforms the source array into a dictionary by applying the given keySelectorto each item in the array.
@param keySelector A selector function that is applied to each item to determine the key it will have within the returned dictionary.
@return A dictionary that is the result of applying the supplied selector functions to each item of the array.
*/
- (NSDictionary*) linq_toDictionaryWithKeySelector:(LINQSelector)keySelector;
/** Counts the number of elements in the array that satisfy the given condition.
@param condition The condition to test elements against.
@return The number of elements that satisfy the condition.
*/
- (NSUInteger) linq_count:(LINQCondition)condition;
/** Concatonates the given array to the end of this array.
@param array The array to concatonate.
@return The concatonated array.
*/
- (NSArray*) linq_concat:(NSArray*)array;
/** Reverses the order of items within this array.
@return The reversed array.
*/
- (NSArray*) linq_reverse;
@end