FMLiveSwitchStringAssistant Class Reference

Contains methods for string manipulation. More...

Instance Methods

(instancetype) - init
 

Class Methods

(bool) + isNullOrWhiteSpaceWithS:
 
(FMLiveSwitchStringAssistant *) + stringAssistant
 
(NSMutableArray *) + subArray:offset:
 Creates a subarray from an existing array. More...
 
(NSMutableArray *) + subArray:offset:count:
 Creates a subarray from an existing array. More...
 

Detailed Description

Contains methods for string manipulation.

Method Documentation

◆ init

- (instancetype) init

◆ isNullOrWhiteSpaceWithS:

+ (bool) isNullOrWhiteSpaceWithS: (NSString *)  s
Parameters
sThe s.

◆ stringAssistant

+ (FMLiveSwitchStringAssistant*) stringAssistant

◆ subArray:offset:

+ (NSMutableArray*) subArray: (NSMutableArray *)  array
offset: (int)  offset 

Creates a subarray from an existing array.

Parameters
arrayThe source array.
offsetThe offset into the source array.
Returns
The subarray.

◆ subArray:offset:count:

+ (NSMutableArray*) subArray: (NSMutableArray *)  array
offset: (int)  offset
count: (int)  count 

Creates a subarray from an existing array.

Parameters
arrayThe source array.
offsetThe offset into the source array.
countThe number of elements to copy into the subarray.
Returns
The subarray.