Categories
These categories provide the essence of Funky, providing easy access to all the utilities and collection subclasses.
The following categories are available globally.
-
This is a category on NSArray to convert the current set into a nil-storing collection.
See moreSee
Mutable counterpartNSMutableArray(FunkyNilStoring)Declaration
Objective-C
@interface NSArray <__covariant ObjectType> (FunkyNilStoring) @end -
This is a category on NSMutableArray to convert the current set into a nil-storing collection.
See moreSee
Immutable counterpartNSArray(FunkyNilStoring)Declaration
Objective-C
@interface NSMutableArray <ObjectType> (FunkyNilStoring) @end
-
This is a category on NSArray to convert the current set into a nil-tolerant collection.
See moreSee
Mutable counterpartNSMutableArray(FunkyNilTolerant)Declaration
Objective-C
@interface NSArray <__covariant ObjectType> (FunkyNilTolerant) @end -
This is a category on NSMutableArray to convert the current set into a nil-tolerant collection.
See moreSee
Immutable counterpartNSArray(FunkyNilTolerant)Declaration
Objective-C
@interface NSMutableArray <ObjectType> (FunkyNilTolerant) @end
-
This is a category on NSDictionary to convert the current set into a nil-storing collection.
See moreSee
Mutable counterpartNSMutableDictionary(FunkyNilStoring)Declaration
Objective-C
@interface NSDictionary <__covariant KeyType, __covariant ObjectType> (FunkyNilStoring) @end -
This is a category on NSMutableDictionary to convert the current set into a nil-storing collection.
See moreSee
Immutable counterpartNSDictionary(FunkyNilStoring)Declaration
Objective-C
@interface NSMutableDictionary <KeyType, ObjectType> (FunkyNilStoring) @end
-
This is a category on NSDictionary to convert the current set into a nil-tolerant collection.
See moreSee
Mutable counterpartNSMutableDictionary(FunkyNilTolerant)Declaration
Objective-C
@interface NSDictionary <__covariant KeyType, __covariant ObjectType> (FunkyNilTolerant) @end -
This is a category on NSMutableDictionary to convert the current set into a nil-tolerant collection.
See moreSee
Immutable counterpartNSDictionary(FunkyNilTolerant)Declaration
Objective-C
@interface NSMutableDictionary <KeyType, ObjectType> (FunkyNilTolerant) @end
-
This is a category on NSSet to convert the current set into a nil-storing collection.
See moreSee
Mutable counterpartNSMutableSet(FunkyNilStoring)Declaration
Objective-C
@interface NSSet <__covariant ObjectType> (FunkyNilStoring) @end -
This is a category on NSMutableSet to convert the current set into a nil-storing collection.
See moreSee
Immutable counterpartNSSet(FunkyNilStoring)Declaration
Objective-C
@interface NSMutableSet <ObjectType> (FunkyNilStoring) @end
-
This is a category on NSSet to convert the current set into a nil-tolerant collection.
See moreSee
Mutable counterpartNSMutableSet(FunkyNilTolerant)Declaration
Objective-C
@interface NSSet <__covariant ObjectType> (FunkyNilTolerant) @end -
This is a category on NSMutableSet to convert the current set into a nil-tolerant collection.
See moreSee
Immutable counterpartNSSet(FunkyNilTolerant)Declaration
Objective-C
@interface NSMutableSet <ObjectType> (FunkyNilTolerant) @end
-
This extension provides simple and easy to use functional and general utilities for NSArray. If you need to prefix the extension methods in this category, you should import
NSArray+FunkyPrefixedUtilities.h, where every utility method is prefixed with thefunky_keyword for compatiblitiy reasons.See
Prefixed counterpartNSArray(FunkyPrefixedUtilities)See moreSee
Mutable counterpartNSMutableArray(FunkyUtilities)Declaration
Objective-C
@interface NSArray <__covariant ObjectType> (FunkyUtilities) @end -
This extension provides simple and easy to use functional and general utilities for NSMutableArray. If you need to prefix the extension methods in this category, you should import
NSArray+FunkyPrefixedUtilities.h, where every utility method is prefixed with thefunky_keyword for compatiblitiy reasons.See
Prefixed counterpartNSMutableArray(FunkyPrefixedUtilities)See moreSee
Immutable counterpartNSArray(FunkyUtilities)Declaration
Objective-C
@interface NSMutableArray <ObjectType> (FunkyUtilities) @end
-
This extension provides simple and easy to use functional and general utilities for NSDictionary. If you need to prefix the extension methods in this category, you should import
NSDictionary+FunkyPrefixedUtilities.h, where every utility method is prefixed with thefunky_keyword for compatiblitiy reasons.See
Prefixed counterpartNSDictionary(FunkyPrefixedUtilities)See moreSee
Mutable counterpartNSMutableDictionary(FunkyUtilities)Declaration
Objective-C
@interface NSDictionary <__covariant KeyType, __covariant ObjectType> (FunkyUtilities) @end -
This extension provides simple and easy to use functional and general utilities for NSMutableDictionary. If you need to prefix the extension methods in this category, you should import
NSDictionary+FunkyPrefixedUtilities.h, where every utility method is prefixed with thefunky_keyword for compatiblitiy reasons.See
Prefixed counterpartNSMutableDictionary(FunkyPrefixedUtilities)See moreSee
Immutable counterpartNSDictionary(FunkyUtilities)Declaration
Objective-C
@interface NSMutableDictionary <KeyType, ObjectType> (FunkyUtilities) @end
-
This extension provides simple and easy to use functional and general utilities for NSObject. If you need to prefix the extension methods in this category, you should import
NSObject+FunkyPrefixedUtilities.h, where every utility method is prefixed with thefunky_keyword for compatiblitiy reasons.See moreSee
Prefixed counterpartNSObject(FunkyPrefixedUtilities)Declaration
Objective-C
@interface NSObject (FunkyUtilities)
-
This extension provides simple and easy to use functional and general utilities for NSSet. If you need to prefix the extension methods in this category, you should import
NSSet+FunkyPrefixedUtilities.h, where every utility method is prefixed with thefunky_keyword for compatiblitiy reasons.See
Prefixed counterpartNSSet(FunkyPrefixedUtilities)See moreSee
Mutable counterpartNSMutableSet(FunkyUtilities)Declaration
Objective-C
@interface NSSet <__covariant ObjectType> (FunkyUtilities) @end -
This extension provides simple and easy to use functional and general utilities for NSMutableSet. If you need to prefix the extension methods in this category, you should import
NSSet+FunkyPrefixedUtilities.h, where every utility method is prefixed with thefunky_keyword for compatiblitiy reasons.See
Prefixed counterpartNSMutableSet(FunkyPrefixedUtilities)See moreSee
Immutable counterpartNSSet(FunkyUtilities)Declaration
Objective-C
@interface NSMutableSet <ObjectType> (FunkyUtilities) @end
-
This extension provides simple and easy to use functional and general utilities for NSArray. All the methods in this category are prefixed with the
funky_keyword for compatibility reasons. If you prefer unprefixed utilities, you should importNSArray+FunkyUtilities.h.See
Unprefixed counterpartNSArray(FunkyUtilities)See moreSee
Mutable counterpartNSMutableArray(FunkyPrefixedUtilities)Declaration
Objective-C
@interface NSArray <__covariant ObjectType> (FunkyPrefixedUtilities) @end -
This extension provides simple and easy to use functional and general utilities for NSMutableArray. All the methods in this category are prefixed with the
funky_keyword for compatibility reasons. If you prefer unprefixed utilities, you should importNSArray+FunkyUtilities.h.See
Unprefixed counterpartNSMutableArray(FunkyUtilities)See moreSee
Immutable counterpartNSArray(FunkyPrefixedUtilities)Declaration
Objective-C
@interface NSMutableArray <ObjectType> (FunkyPrefixedUtilities) @end
-
This extension provides simple and easy to use functional and general utilities for NSDictionary. All the methods in this category are prefixed with the
funky_keyword for compatibility reasons. If you prefer unprefixed utilities, you should importNSDictionary+FunkyUtilities.h.See
Unprefixed counterpartNSDictionary(FunkyUtilities)See moreSee
Mutable counterpartNSMutableDictionary(FunkyPrefixedUtilities)Declaration
Objective-C
@interface NSDictionary <__covariant KeyType, __covariant ObjectType> (FunkyPrefixedUtilities) @end -
This extension provides simple and easy to use functional and general utilities for NSMutableDictionary. All the methods in this category are prefixed with the
funky_keyword for compatibility reasons. If you prefer unprefixed utilities, you should importNSDictionary+FunkyUtilities.h.See
Unprefixed counterpartNSMutableDictionary(FunkyUtilities)See moreSee
Immutable counterpartNSDictionary(FunkyPrefixedUtilities)Declaration
Objective-C
@interface NSMutableDictionary <KeyType, ObjectType> (FunkyPrefixedUtilities) @end
-
This extension provides simple and easy to use functional and general utilities for NSObject. If you need to prefix the extension methods in this category, you should import
NSObject+FunkyPrefixedUtilities.h, where every utility method is prefixed with thefunky_keyword for compatiblitiy reasons.See moreSee
Unprefixed counterpartNSObject(FunkyUtilities)Declaration
Objective-C
@interface NSObject (FunkyPrefixedUtilities)
-
This extension provides simple and easy to use functional and general utilities for NSSet. All the methods in this category are prefixed with the
funky_keyword for compatibility reasons. If you prefer unprefixed utilities, you should importNSSet+FunkyUtilities.h.See
Unprefixed counterpartNSSet(FunkyUtilities)See moreSee
Mutable counterpartNSMutableSet(FunkyPrefixedUtilities)Declaration
Objective-C
@interface NSSet <__covariant ObjectType> (FunkyPrefixedUtilities) @end -
This extension provides simple and easy to use functional and general utilities for NSMutableSet. All the methods in this category are prefixed with the
funky_keyword for compatibility reasons. If you prefer unprefixed utilities, you should importNSSet+FunkyUtilities.h.See
Unprefixed counterpartNSMutableSet(FunkyUtilities)See moreSee
Immutable counterpartNSSet(FunkyPrefixedUtilities)Declaration
Objective-C
@interface NSMutableSet <ObjectType> (FunkyPrefixedUtilities) @end
View on GitHub
Install in Dash
Categories Reference