ArrayUtil.h 364 B

12345678910111213141516
  1. //
  2. // ArrayUtil.h
  3. //
  4. // Created by Giles Payne on 2020/02/09.
  5. //
  6. #pragma once
  7. #import <Foundation/Foundation.h>
  8. /**
  9. * Utility function to create and populate an NSMutableArray with a specific size
  10. * @param size Size of array to create
  11. * @param val Value with which to initialize array elements
  12. */
  13. NSMutableArray* createArrayWithSize(int size, NSObject* val);