Returns a map table, initialized with the given functions.
Original signature is '- (id)initWithKeyPointerFunctions:(NSPointerFunctions *)keyFunctions valuePointerFunctions:(NSPointerFunctions *)valueFunctions capacity:(NSUInteger)initialCapacity'
Available in Mac OS X v10.5 and later.

C# | Visual Basic | Visual C++ |
public virtual Id InitWithKeyPointerFunctionsValuePointerFunctionsCapacity( NSPointerFunctions keyFunctions, NSPointerFunctions valueFunctions, NSUInteger initialCapacity )
Public Overridable Function InitWithKeyPointerFunctionsValuePointerFunctionsCapacity ( _ keyFunctions As NSPointerFunctions, _ valueFunctions As NSPointerFunctions, _ initialCapacity As NSUInteger _ ) As Id
public: virtual Id^ InitWithKeyPointerFunctionsValuePointerFunctionsCapacity( NSPointerFunctions^ keyFunctions, NSPointerFunctions^ valueFunctions, NSUInteger initialCapacity )

- keyFunctions (NSPointerFunctions)
- The functions the map table uses to manage keys.
- valueFunctions (NSPointerFunctions)
- The functions the map table uses to manage values.
- initialCapacity (NSUInteger)
- The initial capacity of the map table. This is just a hint; the map table may subsequently grow and shrink as required.

A map table, initialized with the given functions.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)