// // NSArrayAdditions.h // Exercise 20 // // Created by Jonathan Saggau on 9/19/06. // Copyright 2006 Jonathan Saggau. All rights reserved. // #import @interface NSArray (NSArrayAdditions) // Warning::: No err checking here. Pass it what it wants. - (NSArray *)normalizedArrayToMin:(float) min toMax:(float) max; // Returns the first object in the array as sorted with @selector(compare:) - (id)min; // Returns the last object in the array as sorted with @selector(compare:) - (id)max; @end