NSMutableArray(fifoQueue) Category Reference

Declared in NSMutableArray+fifoQueue.h
NSMutableArray+fifoQueue.m

Overview

FIFO queue implementation using NSMutableArray

– push:

Push object to the back of the queue.

- (void)push:(id)anObject

Parameters

anObject

Object to push.

Discussion

Push object to the back of the queue.

Declared In

NSMutableArray+fifoQueue.h

– pop

Pop object from the front of the queue.

- (id)pop

Return Value

object from the front of the queue.

Discussion

Pop object from the front of the queue.

Declared In

NSMutableArray+fifoQueue.h